| org.apache.poi.poifs.property.Parent
All known Subclasses: org.apache.poi.poifs.property.DirectoryProperty,
Parent | public interface Parent extends Child(Code) | | Behavior for parent (directory) properties
author: Marc Johnson27591@hotmail.com |
addChild | public void addChild(Property property) throws IOException(Code) | | Add a new child to the collection of children
Parameters: property - the new child to be added; must not be null exception: IOException - if the Parent already has a child withthe same name |
getChildren | public Iterator getChildren()(Code) | | Get an iterator over the children of this Parent; all elements
are instances of Property.
Iterator of children; may refer to an empty collection |
setNextChild | public void setNextChild(Child child)(Code) | | Set the next Child
Parameters: child - the new 'next' child; may be null, which has theeffect of saying there is no 'next' child |
setPreviousChild | public void setPreviousChild(Child child)(Code) | | Set the previous Child
Parameters: child - the new 'previous' child; may be null, which hasthe effect of saying there is no 'previous' child |
|
|