diff --git a/src/scratchpad/src/org/apache/poi/hdf/event/HDFLowLevelParsingListener.java b/src/scratchpad/src/org/apache/poi/hdf/event/HDFLowLevelParsingListener.java index 810ee75ed..02fc6af9a 100644 --- a/src/scratchpad/src/org/apache/poi/hdf/event/HDFLowLevelParsingListener.java +++ b/src/scratchpad/src/org/apache/poi/hdf/event/HDFLowLevelParsingListener.java @@ -11,12 +11,17 @@ import org.apache.poi.hdf.model.hdftypes.StyleSheet; public interface HDFLowLevelParsingListener { + public void mainDocument(byte[] mainDocument); + public void tableStream(byte[] tableStream); public void document(DocumentProperties dop); - public void section(SepxNode sepx); + public void bodySection(SepxNode sepx); public void paragraph(PapxNode papx); public void characterRun(ChpxNode chpx); + public void hdrSection(SepxNode sepx); + public void endSections(); public void text(TextPiece t); public void fonts(FontTable fontTbl); public void lists(ListTables listTbl); public void styleSheet(StyleSheet stsh); + public void miscellaneous(int fcMin, int ccpText, int ccpFtn, int fcPlcfhdd, int lcbPlcfhdd); } \ No newline at end of file