Package loci.poi.ddf
Class NullEscherSerializationListener
java.lang.Object
loci.poi.ddf.NullEscherSerializationListener
- All Implemented Interfaces:
EscherSerializationListener
Ignores all serialization events.
- Author:
- Glen Stampoultzis (glens at apache.org)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafterRecordSerialize(int offset, short recordId, int size, EscherRecord record) Fired after a record has been serialized.voidbeforeRecordSerialize(int offset, short recordId, EscherRecord record) Fired before a given escher record is serialized.
-
Constructor Details
-
NullEscherSerializationListener
public NullEscherSerializationListener()
-
-
Method Details
-
beforeRecordSerialize
Description copied from interface:EscherSerializationListenerFired before a given escher record is serialized.- Specified by:
beforeRecordSerializein interfaceEscherSerializationListener- Parameters:
offset- The position in the data array at which the record will be serialized.recordId- The id of the record about to be serialized.
-
afterRecordSerialize
Description copied from interface:EscherSerializationListenerFired after a record has been serialized.- Specified by:
afterRecordSerializein interfaceEscherSerializationListener- Parameters:
offset- The position of the end of the serialized record + 1recordId- The id of the record about to be serializedsize- The number of bytes written for this record. If it is a container record then this will include the size of any included records.
-