aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/ddf
diff options
context:
space:
mode:
authorMarius Volkhart <mariusvolkhart@apache.org>2021-02-28 18:39:51 +0000
committerMarius Volkhart <mariusvolkhart@apache.org>2021-02-28 18:39:51 +0000
commitfab0ec3e088fbc113fe91bcd36877d966688f2d9 (patch)
treeefc2dcb32f3efa819461d3a4da92e7775172dd11 /src/java/org/apache/poi/ddf
parentb7038df14dc09a640d4c4d67820dba98f09cf7f6 (diff)
downloadpoi-fab0ec3e088fbc113fe91bcd36877d966688f2d9.tar.gz
poi-fab0ec3e088fbc113fe91bcd36877d966688f2d9.zip
Add documentation to EscherRecordTypes#DG_CONTAINER
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1887007 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/ddf')
-rw-r--r--src/java/org/apache/poi/ddf/EscherRecordTypes.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/java/org/apache/poi/ddf/EscherRecordTypes.java b/src/java/org/apache/poi/ddf/EscherRecordTypes.java
index b0c11ee5bd..c65169e001 100644
--- a/src/java/org/apache/poi/ddf/EscherRecordTypes.java
+++ b/src/java/org/apache/poi/ddf/EscherRecordTypes.java
@@ -44,6 +44,12 @@ public enum EscherRecordTypes {
* Referred to as an {@code OfficeArtBStoreContainer} in {@code [MS-ODRAW].pdf v20201117}.
*/
BSTORE_CONTAINER(0xf001, "BStoreContainer", null, EscherContainerRecord::new),
+
+ /**
+ * {@link EscherContainerRecord Container} for all the file records for the objects in a drawing.
+ * <p>
+ * Referred to as an {@code OfficeArtDgContainer} in {@code [MS-ODRAW].pdf v20201117}.
+ */
DG_CONTAINER(0xf002, "DgContainer", null, EscherContainerRecord::new),
SPGR_CONTAINER(0xf003, "SpgrContainer", null, EscherContainerRecord::new),
SP_CONTAINER(0xf004, "SpContainer", null, EscherContainerRecord::new),