FileDocCategorySizeDatePackage
Parent.javaAPI DocApache Poi 3.0.12331Mon Jan 01 12:39:36 GMT 2007org.apache.poi.poifs.property

Parent

public interface Parent implements Child
Behavior for parent (directory) properties
author
Marc Johnson27591@hotmail.com

Fields Summary
Constructors Summary
Methods Summary
public voidaddChild(org.apache.poi.poifs.property.Property property)
Add a new child to the collection of children

param
property the new child to be added; must not be null
exception
IOException if the Parent already has a child with the same name

public java.util.IteratorgetChildren()
Get an iterator over the children of this Parent; all elements are instances of Property.

return
Iterator of children; may refer to an empty collection

public voidsetNextChild(org.apache.poi.poifs.property.Child child)
Set the next Child

param
child the new 'next' child; may be null, which has the effect of saying there is no 'next' child

public voidsetPreviousChild(org.apache.poi.poifs.property.Child child)
Set the previous Child

param
child the new 'previous' child; may be null, which has the effect of saying there is no 'previous' child