]> source.dussan.org Git - poi.git/commitdiff
added some functions
authorSaid Ryan Ackley <sackley@apache.org>
Wed, 3 Jul 2002 19:29:35 +0000 (19:29 +0000)
committerSaid Ryan Ackley <sackley@apache.org>
Wed, 3 Jul 2002 19:29:35 +0000 (19:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352747 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hdf/event/HDFLowLevelParsingListener.java

index 810ee75edb00e62ef449b6818d8e76ad1eae3c32..02fc6af9a835834bd885f8a843925eaee0a10515 100644 (file)
@@ -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