Methods Summary |
---|
org.apache.poi.poifs.filesystem.POIFSDocument | getDocument()get the POIFSDocument
return _document;
|
public java.lang.String | getShortDescription()Provides a short description of the object, to be used when a
POIFSViewable object has not provided its contents.
return getName();
|
public int | getSize()get the zize of the document, in bytes
return getProperty().getSize();
|
public java.lang.Object[] | getViewableArray()Get an array of objects, some of which may implement
POIFSViewable
return new Object[ 0 ];
|
public java.util.Iterator | getViewableIterator()Get an Iterator of objects, some of which may implement
POIFSViewable
List components = new ArrayList();
components.add(getProperty());
components.add(_document);
return components.iterator();
|
protected boolean | isDeleteOK()extensions use this method to verify internal rules regarding
deletion of the underlying store.
return true;
|
public boolean | isDocumentEntry()is this a DocumentEntry?
return true;
|
public boolean | preferArray()Give viewers a hint as to whether to call getViewableArray or
getViewableIterator
return false;
|