|
EchoPoint API - 3.0.0b5 App Webcontainer |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
M - The user object backing the node.public interface MutableTreeNode<M>
Defines the requirements for a tree node object that can change -- by adding or removing child nodes, or by changing the contents of a user object stored in the node.
| Method Summary | |
|---|---|
void |
insert(MutableTreeNode child,
int index)
Adds child to the receiver at index. |
void |
remove(int index)
Removes the child at index from the receiver. |
void |
remove(MutableTreeNode node)
Removes node from the receiver. |
void |
removeFromParent()
Removes the receiver from its parent. |
void |
setParent(MutableTreeNode newParent)
Sets the parent of the receiver to newParent. |
void |
setUserObject(M object)
Resets the user object of the receiver to object. |
| Methods inherited from interface echopoint.tree.TreeNode |
|---|
children, getActionCommand, getAllowsChildren, getChildAt, getChildCount, getIndex, getParent, isLeaf |
| Method Detail |
|---|
void insert(MutableTreeNode child,
int index)
child to the receiver at index.
child will be messaged with setParent(echopoint.tree.MutableTreeNode).
child - The child to add.index - The index at which to add the child.void remove(int index)
index from the receiver. setParent(echopoint.tree.MutableTreeNode)
will be messaged on the node being removed.
index - The index of the child to remove.void remove(MutableTreeNode node)
node from the receiver. setParent(echopoint.tree.MutableTreeNode) will
be messaged on node.
node - The node to remove.void removeFromParent()
void setParent(MutableTreeNode newParent)
newParent.
newParent - The new parent for the node.void setUserObject(M object)
object.
object - The user object of the receiver
|
EchoPoint API - 3.0.0b5 App Webcontainer |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||