Java Platform 1.2
Beta 4

Interface com.sun.java.swing.tree.MutableTreeNode

All Known Implementing Classes:
DefaultMutableTreeNode

public abstract interface MutableTreeNode
extends TreeNode

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(Object object)
          Resets the user object of the receiver to object.
 
Methods inherited from interface com.sun.java.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(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.

Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.