FileDocCategorySizeDatePackage
HDFObjectModel.javaAPI DocApache Poi 3.0.13316Mon Jan 01 18:55:22 GMT 2007org.apache.poi.hdf.model

HDFObjectModel

public class HDFObjectModel extends Object implements HDFLowLevelParsingListener

Fields Summary
private byte[]
_mainDocument
"WordDocument" from the POIFS
private DocumentProperties
_dop
The DOP
private StyleSheet
_styleSheet
the StyleSheet
private ListTables
_listTables
list info
private FontTable
_fonts
Font info
int
_fcMin
text offset in main stream
BTreeSet
_text
text pieces
BTreeSet
_sections
document sections
BTreeSet
_paragraphs
document paragraphs
BTreeSet
_characterRuns
document character runs
Constructors Summary
public HDFObjectModel()


     
    
    
Methods Summary
public voidbodySection(org.apache.poi.hdf.model.hdftypes.SepxNode sepx)

      _sections.add(sepx);
    
public voidcharacterRun(org.apache.poi.hdf.model.hdftypes.ChpxNode chpx)

      _characterRuns.add(chpx);
    
public voiddocument(org.apache.poi.hdf.model.hdftypes.DocumentProperties dop)

      _dop = dop;
    
public voidendSections()

    
public voidfonts(org.apache.poi.hdf.model.hdftypes.FontTable fontTbl)

      _fonts = fontTbl;
    
public voidhdrSection(org.apache.poi.hdf.model.hdftypes.SepxNode sepx)

      _sections.add(sepx);
    
public voidlists(org.apache.poi.hdf.model.hdftypes.ListTables listTbl)

      _listTables = listTbl;
    
public voidmainDocument(byte[] mainDocument)

      _mainDocument = mainDocument;
    
public voidmiscellaneous(int fcMin, int ccpText, int ccpFtn, int fcPlcfhdd, int lcbPlcfhdd)

      _fcMin = fcMin;
    
public voidparagraph(org.apache.poi.hdf.model.hdftypes.PapxNode papx)

      _paragraphs.add(papx);
    
public voidstyleSheet(org.apache.poi.hdf.model.hdftypes.StyleSheet stsh)

      _styleSheet = stsh;
    
public voidtableStream(byte[] tableStream)

    
public voidtext(org.apache.poi.hdf.model.hdftypes.TextPiece t)

      _text.add(t);