| java.lang.Object org.apache.poi.ddf.EscherRecord org.apache.poi.ddf.UnknownEscherRecord
UnknownEscherRecord | public class UnknownEscherRecord extends EscherRecord (Code) | | This record is used whenever a escher record is encountered that
we do not explicitly support.
author: Glen Stampoultzis (glens at apache.org) |
UnknownEscherRecord | public UnknownEscherRecord()(Code) | | |
fillFields | public int fillFields(byte[] data, int offset, EscherRecordFactory recordFactory)(Code) | | This method deserializes the record from a byte array.
Parameters: data - The byte array containing the escher record information Parameters: offset - The starting offset into data . Parameters: recordFactory - May be null since this is not a container record. The number of bytes read from the byte array. |
getChildRecords | public List getChildRecords()(Code) | | |
getData | public byte[] getData()(Code) | | |
getRecordName | public String getRecordName()(Code) | | The short name for this record
|
getRecordSize | public int getRecordSize()(Code) | | Returns the number of bytes that are required to serialize this record.
Number of bytes |
serialize | public int serialize(int offset, byte[] data, EscherSerializationListener listener)(Code) | | Writes this record and any contained records to the supplied byte
array.
the number of bytes written. |
setChildRecords | public void setChildRecords(List childRecords)(Code) | | |
|
|