FileDocCategorySizeDatePackage
EscherSerializationListener.javaAPI DocApache Poi 3.0.11956Mon Jan 01 12:39:40 GMT 2007org.apache.poi.ddf

EscherSerializationListener

public interface EscherSerializationListener
Interface for listening to escher serialization events.
author
Glen Stampoultzis (glens at apache.org)

Fields Summary
Constructors Summary
Methods Summary
public voidafterRecordSerialize(int offset, short recordId, int size, org.apache.poi.ddf.EscherRecord record)
Fired after a record has been serialized.

param
offset The position of the end of the serialized record + 1
param
recordId The id of the record about to be serialized
param
size The number of bytes written for this record. If it is a container record then this will include the size of any included records.

public voidbeforeRecordSerialize(int offset, short recordId, org.apache.poi.ddf.EscherRecord record)
Fired before a given escher record is serialized.

param
offset The position in the data array at which the record will be serialized.
param
recordId The id of the record about to be serialized.