Author: mariusvolkhart Date: Tue Mar 9 18:28:59 2021 New Revision: 1887391
URL: http://svn.apache.org/viewvc?rev=1887391&view=rev Log: Cleanup documentation of EscherChildAnchorRecord and EscherClientAnchorRecord Modified: poi/trunk/src/java/org/apache/poi/ddf/EscherChildAnchorRecord.java poi/trunk/src/java/org/apache/poi/ddf/EscherClientAnchorRecord.java Modified: poi/trunk/src/java/org/apache/poi/ddf/EscherChildAnchorRecord.java URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ddf/EscherChildAnchorRecord.java?rev=1887391&r1=1887390&r2=1887391&view=diff ============================================================================== --- poi/trunk/src/java/org/apache/poi/ddf/EscherChildAnchorRecord.java (original) +++ poi/trunk/src/java/org/apache/poi/ddf/EscherChildAnchorRecord.java Tue Mar 9 18:28:59 2021 @@ -25,10 +25,12 @@ import org.apache.poi.util.GenericRecord import org.apache.poi.util.LittleEndian; /** - * The escher child achor record is used to specify the position of a shape under an - * existing group. The first level of shape records use a EscherClientAnchor record instead. + * The escher child anchor record is used to specify the position of a shape under an + * existing group. + * <p> + * The first level of shape records use a {@link EscherClientAnchorRecord} instead. * - * @see EscherChildAnchorRecord + * @see EscherClientAnchorRecord */ public class EscherChildAnchorRecord extends EscherRecord { public static final short RECORD_ID = EscherRecordTypes.CHILD_ANCHOR.typeID; Modified: poi/trunk/src/java/org/apache/poi/ddf/EscherClientAnchorRecord.java URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ddf/EscherClientAnchorRecord.java?rev=1887391&r1=1887390&r2=1887391&view=diff ============================================================================== --- poi/trunk/src/java/org/apache/poi/ddf/EscherClientAnchorRecord.java (original) +++ poi/trunk/src/java/org/apache/poi/ddf/EscherClientAnchorRecord.java Tue Mar 9 18:28:59 2021 @@ -29,7 +29,8 @@ import org.apache.poi.util.LittleEndian; * The escher client anchor specifies which rows and cells the shape is bound to as well as * the offsets within those cells. Each cell is 1024 units wide by 256 units long regardless * of the actual size of the cell. The EscherClientAnchorRecord only applies to the top-most - * shapes. Shapes contained in groups are bound using the EscherChildAnchorRecords. + * shapes. Shapes contained in groups are bound using the EscherChildAnchorRecords. Referred to as an + * {@code OfficeArtClientAnchor} by {@code [MS-PPT] - v20210216}. * * @see EscherChildAnchorRecord */ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
