interface org.aswing.tree.MutableTreeNode extends TreeNode
| Implementors | ||||
![]() | DefaultMutableTreeNode |
| ||
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.
Author paling
Instance Fields
![]() | Show inherited public instance fields | Hide inherited public instance fields
|
function insert(child:MutableTreeNode, index:Int): Void
Adds child to the receiver at index.
child will be messaged with setParent.
function remove(node:MutableTreeNode): Void
Removes node from the receiver. setParent
will be messaged on node.

