void |
DefaultMutableTreeNode.addâ(MutableTreeNode newChild) |
Removes newChild from its parent and makes it a child of
this node by adding it to the end of this node's child array.
|
void |
DefaultMutableTreeNode.insertâ(MutableTreeNode newChild,
int childIndex) |
Removes newChild from its present parent (if it has a
parent), sets the child's parent to this node, and then adds the child
to this node's child array at index childIndex .
|
void |
MutableTreeNode.insertâ(MutableTreeNode child,
int index) |
Adds child to the receiver at index .
|
void |
DefaultTreeModel.insertNodeIntoâ(MutableTreeNode newChild,
MutableTreeNode parent,
int index) |
Invoked this to insert newChild at location index in parents children.
|
void |
DefaultMutableTreeNode.removeâ(MutableTreeNode aChild) |
Removes aChild from this node's child array, giving it a
null parent.
|
void |
MutableTreeNode.removeâ(MutableTreeNode node) |
Removes node from the receiver.
|
void |
DefaultTreeModel.removeNodeFromParentâ(MutableTreeNode node) |
Message this to remove node from its parent.
|
void |
DefaultMutableTreeNode.setParentâ(MutableTreeNode newParent) |
Sets this node's parent to newParent but does not
change the parent's child array.
|
void |
MutableTreeNode.setParentâ(MutableTreeNode newParent) |
Sets the parent of the receiver to newParent .
|