added a few functions to the interface

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352740 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Said Ryan Ackley 2002-07-01 20:31:36 +00:00
parent 873d691c84
commit 752ef86096

View File

@ -5,6 +5,9 @@ import org.apache.poi.hdf.model.hdftypes.PapxNode;
import org.apache.poi.hdf.model.hdftypes.SepxNode;
import org.apache.poi.hdf.model.hdftypes.TextPiece;
import org.apache.poi.hdf.model.hdftypes.DocumentProperties;
import org.apache.poi.hdf.model.hdftypes.FontTable;
import org.apache.poi.hdf.model.hdftypes.ListTables;
import org.apache.poi.hdf.model.hdftypes.StyleSheet;
public interface HDFLowLevelParsingListener
{
@ -13,4 +16,7 @@ public interface HDFLowLevelParsingListener
public void paragraph(PapxNode papx);
public void characterRun(ChpxNode chpx);
public void text(TextPiece t);
public void fonts(FontTable fontTbl);
public void lists(ListTables listTbl);
public void styleSheet(StyleSheet stsh);
}