IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
 
[Sommaire]  [Top 50]  [F.A.Q.]  [ Java SE ]  [ Java EE ]  [Javadoc standard]  [Contact]
[ 1.4.2 ]  [ 5.0 ]  [ 6.0
Rechercher   
Dans
Options   sensible à la casse
étendre la recherche aux descriptions
Préférences
fr en 
 
Moteurs de recherche
JavaTM 2 Platform Std. Ed. v1.5.0

javax.swing.tree
Interface MutableTreeNode

All Superinterfaces:
TreeNode
All Known Implementing Classes:
DefaultMutableTreeNode, JTree.DynamicUtilTreeNode

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(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

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


remove

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


remove

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


setUserObject

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


removeFromParent

void removeFromParent()
Removes the receiver from its parent.


setParent

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


Copyright 2003 Sun Microsystems, Inc. All rights reserved