| org.apache.poi.poifs.property.Child
All known Subclasses: org.apache.poi.poifs.property.Property,
Child | public interface Child (Code) | | This interface defines methods for finding and setting sibling
Property instances
author: Marc Johnson (mjohnson at apache dot org) |
getNextChild | public Child getNextChild()(Code) | | Get the next Child, if any
the next Child; may return null |
getPreviousChild | public Child getPreviousChild()(Code) | | Get the previous Child, if any
the previous Child; may return null |
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 |
|
|