public interface IHierarchyParent
Modifier and Type | Method and Description |
---|---|
void |
addChild(int index,
ConfigurationNode child)
Add child at specified position.
|
void |
clearChildren()
Clear children.
|
ConfigurationNode |
findChild(int index)
Get child n.
|
int |
getChildCount()
Get child count.
|
void |
removeChild(int index)
Remove child n.
|
static final String _rcsid
void clearChildren()
int getChildCount()
ConfigurationNode findChild(int index)
index
- is the child number.void removeChild(int index)
index
- is the child to remove.void addChild(int index, ConfigurationNode child)
index
- is the position to add the child.child
- is the child to add.