| java.lang.Object org.apache.poi.POIDocument
All known Subclasses: org.apache.poi.hwpf.HWPFDocument, org.apache.poi.hslf.HSLFSlideShow, org.apache.poi.hdgf.HDGFDiagram, org.apache.poi.hssf.usermodel.HSSFWorkbook,
POIDocument | abstract public class POIDocument (Code) | | This holds the common functionality for all POI
Document classes.
Currently, this relates to Document Information Properties
author: Nick Burch |
filesystem | protected POIFSFileSystem filesystem(Code) | | The open POIFS FileSystem that contains our document
|
copyNodes | protected void copyNodes(POIFSFileSystem source, POIFSFileSystem target, List excepts) throws IOException(Code) | | Copies nodes from one POIFS to the other minus the excepts
Parameters: source - is the source POIFS to copy from Parameters: target - is the target POIFS to copy to Parameters: excepts - is a list of Strings specifying what nodes NOT to copy |
getPropertySet | protected PropertySet getPropertySet(String setName)(Code) | | For a given named property entry, either return it or null if
if it wasn't found
|
getSummaryInformation | public SummaryInformation getSummaryInformation()(Code) | | Fetch the Summary Information of the document
|
readProperties | protected void readProperties()(Code) | | Find, and create objects for, the standard
Documment Information Properties (HPSF)
|
writeProperties | protected void writeProperties(POIFSFileSystem outFS) throws IOException(Code) | | Writes out the standard Documment Information Properties (HPSF)
Parameters: outFS - the POIFSFileSystem to write the properties into |
writeProperties | protected void writeProperties(POIFSFileSystem outFS, List writtenEntries) throws IOException(Code) | | Writes out the standard Documment Information Properties (HPSF)
Parameters: outFS - the POIFSFileSystem to write the properties into Parameters: writtenEntries - a list of POIFS entries to add the property names too |
writePropertySet | protected void writePropertySet(String name, PropertySet set, POIFSFileSystem outFS) throws IOException(Code) | | Writes out a given ProperySet
Parameters: name - the (POIFS Level) name of the property to write Parameters: set - the PropertySet to write out Parameters: outFS - the POIFSFileSystem to write the property into |
|
|