public interface javax.swing.tree
MutableTreeNode


Show All Login
Java SE 6
  
Implements: TreeNode
Implemented by: DefaultMutableTreeNode
Details
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.
version1.12 11/17/05
See also javax.swing.tree.DefaultMutableTreeNode, javax.swing.JTree

Methods
public void insert(MutableTreeNode child, int index)
Adds child to the receiver at index. child will be messaged with setParent.
public void remove(int index)
Removes the child at index from the receiver.
public void remove(MutableTreeNode node)
Removes node from the receiver. setParent will be messaged on node.
public void removeFromParent()
Removes the receiver from its parent.

Properties
public void setParent(MutableTreeNode newParent)
Sets the parent of the receiver to newParent.
public void setUserObject(Object object)
Resets the user object of the receiver to object.