Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR-209 (Final Approval Ballot)

javax.swing.tree
Interface MutableTreeNode

All Superinterfaces:
TreeNode
All Known Implementing Classes:
DefaultMutableTreeNode

public interface MutableTreeNode
extends TreeNode

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.

See Also:
DefaultMutableTreeNode, JTree

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(java.lang.Object object)
          Resets the user object of the receiver to object.
 
Methods inherited from interface javax.swing.tree.TreeNode
children, getAllowsChildren, getChildAt, getChildCount, getIndex, getParent, isLeaf
 

Method Detail

insert

public void insert(MutableTreeNode child,
                   int index)
Adds child to the receiver at index. child will be messaged with setParent.


remove

public void remove(int index)
Removes the child at index from the receiver.


remove

public void remove(MutableTreeNode node)
Removes node from the receiver. setParent will be messaged on node.


setUserObject

public void setUserObject(java.lang.Object object)
Resets the user object of the receiver to object.


removeFromParent

public void removeFromParent()
Removes the receiver from its parent.


setParent

public void setParent(MutableTreeNode newParent)
Sets the parent of the receiver to newParent.


JSR-209 (Final Approval Ballot)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 209 specification.