Interface java.awt.swing.tree.MutableTreeNode
- Implementing Classes:
- DefaultMutableTreeNode
- public interface MutableTreeNode
- extends TreeNode
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
.
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.