org.apache.myfaces.custom.tree
public interface MutableTreeNode extends TreeNode
Version: $Revision: 169651 $ $Date: 2005-05-11 18:14:23 +0200 (Wed, 11 May 2005) $
Method Summary | |
---|---|
void | insert(MutableTreeNode child)
Add the given child to the children of this node.
|
void | insert(MutableTreeNode child, int index)
Add the given child to the children of this node at index.
|
void | remove(int index)
Remove the child at the given index. |
void | remove(MutableTreeNode node)
Remove the given node. |
void | removeFromParent()
Remove this node from its parent. |
void | setParent(MutableTreeNode parent)
Set the parent node. |
void | setUserObject(Object object)
Sets the user object of this node. |