Interface IHierarchyParent
-
- All Known Implementing Classes:
ConfigNode,ConfigParams,Configuration,ConfigurationNode,Connectors,ManifoldCF.OverrideableManifoldCFConfiguration,ManifoldCFConfiguration,Specification,SpecificationNode
public interface IHierarchyParentThis interface describes the methods for support configuration parent/child relationships.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String_rcsid
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddChild(int index, ConfigurationNode child)Add child at specified position.voidclearChildren()Clear children.ConfigurationNodefindChild(int index)Get child n.intgetChildCount()Get child count.voidremoveChild(int index)Remove child n.
-
-
-
Field Detail
-
_rcsid
static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
-
Method Detail
-
clearChildren
void clearChildren()
Clear children.
-
getChildCount
int getChildCount()
Get child count.- Returns:
- the count.
-
findChild
ConfigurationNode findChild(int index)
Get child n.- Parameters:
index- is the child number.- Returns:
- the child node.
-
removeChild
void removeChild(int index)
Remove child n.- Parameters:
index- is the child to remove.
-
addChild
void addChild(int index, ConfigurationNode child)Add child at specified position.- Parameters:
index- is the position to add the child.child- is the child to add.
-
-