Package org.apache.poi.ddf
Class EscherRecord
java.lang.Object
org.apache.poi.ddf.EscherRecord
- All Implemented Interfaces:
org.apache.poi.common.Duplicatable,GenericRecord
- Direct Known Subclasses:
AbstractEscherOptRecord,EscherBlipRecord,EscherBSERecord,EscherChildAnchorRecord,EscherClientAnchorRecord,EscherClientDataRecord,EscherContainerRecord,EscherDggRecord,EscherDgRecord,EscherPlaceholder,EscherSpgrRecord,EscherSplitMenuColorsRecord,EscherSpRecord,EscherTextboxRecord,UnknownEscherRecord
public abstract class EscherRecord
extends Object
implements org.apache.poi.common.Duplicatable, GenericRecord
The base abstract record from which all escher records are defined. Subclasses will need
to define methods for serialization/deserialization and for determining the record size.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract EscherRecordcopy()voiddisplay(PrintWriter w, int indent) The display methods allows escher variables to print the record names according to their hierarchy.abstract intfillFields(byte[] data, int offset, EscherRecordFactory recordFactory) The contract of this method is to deserialize an escher record including its children.getChild(int index) Returns the indexed child record.List<? extends GenericRecord> shortReturns the instance part of the option record.shortNote thatoptionsis an internal field.shortReturn the current record id.abstract StringSubclasses should return the short name for this escher record.abstract intSubclasses should effeciently return the number of bytes required to serialize the record.shortReturns the version part of the option record.booleanDetermine whether this is a container record by inspecting the option field.byte[]Serializes to a new byte array.intserialize(int offset, byte[] data) Serializes to an existing byte array without serialization listener.abstract intserialize(int offset, byte[] data, EscherSerializationListener listener) Serializes the record to an existing byte array.voidsetChildRecords(List<EscherRecord> childRecords) Sets the child records for this record.voidsetInstance(short value) Sets the instance part of recordvoidsetOptions(short options) Set the options this this record.voidsetRecordId(short recordId) Sets the record id for this record.voidsetVersion(short value) Sets the version part of recordfinal StringtoString()toXml()final StringMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.poi.common.usermodel.GenericRecord
getGenericRecordType
-
Constructor Details
-
EscherRecord
public EscherRecord()Create a new instance
-
-
Method Details
-
fillFields
The contract of this method is to deserialize an escher record including its children.- Parameters:
data- The byte array containing the serialized escher records.offset- The offset into the byte array.recordFactory- A factory for creating new escher records.- Returns:
- The number of bytes written.
-
isContainerRecord
public boolean isContainerRecord()Determine whether this is a container record by inspecting the option field.- Returns:
- true is this is a container field.
-
getOptions
Note thatoptionsis an internal field. UsesetInstance(short)()} andsetVersion(short)()} to set the actual fields.- Returns:
- The options field for this record. All records have one.
-
setOptions
Set the options this this record. Container records should have the last nibble set to 0xF.Note that
optionsis an internal field. UsegetInstance()andgetVersion()to access actual fields.- Parameters:
options- the record options
-
serialize
public byte[] serialize()Serializes to a new byte array. This is done by delegating to serialize(int, byte[]);- Returns:
- the serialized record.
- See Also:
-
serialize
public int serialize(int offset, byte[] data) Serializes to an existing byte array without serialization listener. This is done by delegating to serialize(int, byte[], EscherSerializationListener).- Parameters:
offset- the offset within the data byte array.data- the data array to serialize to.- Returns:
- The number of bytes written.
- See Also:
-
serialize
Serializes the record to an existing byte array.- Parameters:
offset- the offset within the byte arraydata- the data array to serialize tolistener- a listener for begin and end serialization events. This is useful because the serialization is hierarchical/recursive and sometimes you need to be able break into that.- Returns:
- the number of bytes written.
-
getRecordSize
public abstract int getRecordSize()Subclasses should effeciently return the number of bytes required to serialize the record.- Returns:
- number of bytes
-
getRecordId
public short getRecordId()Return the current record id.- Returns:
- The 16 bit record id.
-
setRecordId
public void setRecordId(short recordId) Sets the record id for this record.- Parameters:
recordId- the record id
-
getChildRecords
- Returns:
- Returns the children of this record. By default this will be an empty list. EscherCotainerRecord is the only record that may contain children.
- See Also:
-
setChildRecords
Sets the child records for this record. By default this will throw an exception as only EscherContainerRecords may have children.- Parameters:
childRecords- Not used in base implementation.
-
getChild
Returns the indexed child record.- Parameters:
index- the index of the child within the child records- Returns:
- the indexed child record
-
display
The display methods allows escher variables to print the record names according to their hierarchy.- Parameters:
w- The print writer to output to.indent- The current indent level.
-
getRecordName
Subclasses should return the short name for this escher record.- Returns:
- the short name for this escher record
-
getInstance
public short getInstance()Returns the instance part of the option record.- Returns:
- The instance part of the record
-
setInstance
public void setInstance(short value) Sets the instance part of record- Parameters:
value- instance part value
-
getVersion
public short getVersion()Returns the version part of the option record.- Returns:
- The version part of the option record
-
setVersion
public void setVersion(short value) Sets the version part of record- Parameters:
value- version part value
-
toXml
-
toXml
- Parameters:
tab- - each children must be indented right relative to its parent- Returns:
- xml representation of this record
-
toString
-
getGenericChildren
- Specified by:
getGenericChildrenin interfaceGenericRecord
-
getGenericProperties
- Specified by:
getGenericPropertiesin interfaceGenericRecord
-
copy
- Specified by:
copyin interfaceorg.apache.poi.common.Duplicatable
-