Author: mariusvolkhart Date: Wed Feb 17 15:10:17 2021 New Revision: 1886620
URL: http://svn.apache.org/viewvc?rev=1886620&view=rev Log: Documentation for some EscherRecordTypes Modified: poi/trunk/src/java/org/apache/poi/ddf/EscherRecordTypes.java Modified: poi/trunk/src/java/org/apache/poi/ddf/EscherRecordTypes.java URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ddf/EscherRecordTypes.java?rev=1886620&r1=1886619&r2=1886620&view=diff ============================================================================== --- poi/trunk/src/java/org/apache/poi/ddf/EscherRecordTypes.java (original) +++ poi/trunk/src/java/org/apache/poi/ddf/EscherRecordTypes.java Wed Feb 17 15:10:17 2021 @@ -25,7 +25,24 @@ import java.util.stream.Stream; public enum EscherRecordTypes { // records greater then 0xF000 belong to Microsoft Office Drawing format also known as Escher + + /** + * {@link EscherContainerRecord Container} for all OfficeArt file records that contain document-wide data. + * <p> + * Contains, amongst others children, a {@link #BSTORE_CONTAINER}. + * <p> + * Referred to as an {@code OfficeArtDggContainer} in {@code [MS-ODRAW].pdf v20201117}. + */ DGG_CONTAINER(0xF000, "DggContainer", null, EscherContainerRecord::new), + + /** + * {@link EscherContainerRecord Container} for all BLIPs (binary large image or picture) that are used in the + * drawings associated with the parent {@link #DGG_CONTAINER}. + * <p> + * Contains a list of {@link EscherBSERecord}s. + * <p> + * Referred to as an {@code OfficeArtBStoreContainer} in {@code [MS-ODRAW].pdf v20201117}. + */ BSTORE_CONTAINER(0xf001, "BStoreContainer", null, EscherContainerRecord::new), DG_CONTAINER(0xf002, "DgContainer", null, EscherContainerRecord::new), SPGR_CONTAINER(0xf003, "SpgrContainer", null, EscherContainerRecord::new), --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@poi.apache.org For additional commands, e-mail: commits-h...@poi.apache.org