mirror of https://github.com/apache/poi.git
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:
parent
0403a7cdfd
commit
c1266812d0
|
@ -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);
|
||||
}
|
Loading…
Reference in New Issue