|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.POIDocument
org.apache.poi.hwpf.HWPFDocumentCore
public abstract class HWPFDocumentCore
This class holds much of the core of a Word document, but
without some of the table structure information.
You generally want to work with one of
HWPFDocument
or HWPFOldDocument
Field Summary | |
---|---|
protected CHPBinTable |
_cbt
Contains formatting properties for text |
protected FileInformationBlock |
_fib
The FIB |
protected FontTable |
_ft
Holds fonts for this document. |
protected ListTables |
_lt
Hold list tables |
protected byte[] |
_mainStream
main document stream buffer |
protected PAPBinTable |
_pbt
Contains formatting properties for paragraphs |
protected StyleSheet |
_ss
Holds styles for this document. |
protected SectionTable |
_st
Contains formatting properties for sections. |
Fields inherited from class org.apache.poi.POIDocument |
---|
directory |
Constructor Summary | |
---|---|
protected |
HWPFDocumentCore()
|
|
HWPFDocumentCore(DirectoryNode directory)
This constructor loads a Word document from a specific point in a POIFSFileSystem, probably not the default. |
|
HWPFDocumentCore(java.io.InputStream istream)
This constructor loads a Word document from an InputStream. |
|
HWPFDocumentCore(POIFSFileSystem pfilesystem)
This constructor loads a Word document from a POIFSFileSystem |
Method Summary | |
---|---|
CHPBinTable |
getCharacterTable()
|
FileInformationBlock |
getFileInformationBlock()
|
FontTable |
getFontTable()
|
ListTables |
getListTables()
|
PAPBinTable |
getParagraphTable()
|
abstract Range |
getRange()
Returns the range which covers the whole of the document, but excludes any headers and footers. |
SectionTable |
getSectionTable()
|
StyleSheet |
getStyleSheet()
|
abstract TextPieceTable |
getTextTable()
|
static POIFSFileSystem |
verifyAndBuildPOIFS(java.io.InputStream istream)
Takens an InputStream, verifies that it's not RTF, builds a POIFSFileSystem from it, and returns that. |
Methods inherited from class org.apache.poi.POIDocument |
---|
copyNodes, createInformationProperties, getDocumentSummaryInformation, getPropertySet, getSummaryInformation, readProperties, write, writeProperties, writeProperties, writePropertySet |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected FileInformationBlock _fib
protected StyleSheet _ss
protected CHPBinTable _cbt
protected PAPBinTable _pbt
protected SectionTable _st
protected FontTable _ft
protected ListTables _lt
protected byte[] _mainStream
Constructor Detail |
---|
protected HWPFDocumentCore()
public HWPFDocumentCore(java.io.InputStream istream) throws java.io.IOException
istream
- The InputStream that contains the Word document.
java.io.IOException
- If there is an unexpected IOException from the passed
in InputStream.public HWPFDocumentCore(POIFSFileSystem pfilesystem) throws java.io.IOException
pfilesystem
- The POIFSFileSystem that contains the Word document.
java.io.IOException
- If there is an unexpected IOException from the passed
in POIFSFileSystem.public HWPFDocumentCore(DirectoryNode directory) throws java.io.IOException
pfilesystem
- The POIFSFileSystem that contains the Word document.
java.io.IOException
- If there is an unexpected IOException from the passed
in POIFSFileSystem.Method Detail |
---|
public static POIFSFileSystem verifyAndBuildPOIFS(java.io.InputStream istream) throws java.io.IOException
java.io.IOException
public abstract Range getRange()
public abstract TextPieceTable getTextTable()
public CHPBinTable getCharacterTable()
public PAPBinTable getParagraphTable()
public SectionTable getSectionTable()
public StyleSheet getStyleSheet()
public ListTables getListTables()
public FontTable getFontTable()
public FileInformationBlock getFileInformationBlock()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |