Uses of Interface
javax.swing.tree.MutableTreeNode
Package
Description
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides classes and interfaces for dealing with
javax.swing.JTree
.-
Uses of MutableTreeNode in javax.swing
Modifier and TypeClassDescriptionstatic class
DynamicUtilTreeNode
can wrap vectors/hashtables/arrays/strings and create the appropriate children tree nodes as necessary. -
Uses of MutableTreeNode in javax.swing.tree
Modifier and TypeClassDescriptionclass
ADefaultMutableTreeNode
is a general-purpose node in a tree data structure.Modifier and TypeFieldDescriptionprotected MutableTreeNode
DefaultMutableTreeNode.parent
this node's parent, or null if this node has no parentModifier and TypeMethodDescriptionvoid
DefaultMutableTreeNode.add
(MutableTreeNode newChild) RemovesnewChild
from its parent and makes it a child of this node by adding it to the end of this node's child array.void
DefaultMutableTreeNode.insert
(MutableTreeNode newChild, int childIndex) RemovesnewChild
from its present parent (if it has a parent), sets the child's parent to this node, and then adds the child to this node's child array at indexchildIndex
.void
MutableTreeNode.insert
(MutableTreeNode child, int index) Addschild
to the receiver atindex
.void
DefaultTreeModel.insertNodeInto
(MutableTreeNode newChild, MutableTreeNode parent, int index) Invoked this to insert newChild at location index in parents children.void
DefaultMutableTreeNode.remove
(MutableTreeNode aChild) RemovesaChild
from this node's child array, giving it a null parent.void
MutableTreeNode.remove
(MutableTreeNode node) Removesnode
from the receiver.void
DefaultTreeModel.removeNodeFromParent
(MutableTreeNode node) Message this to remove node from its parent.void
DefaultMutableTreeNode.setParent
(MutableTreeNode newParent) Sets this node's parent tonewParent
but does not change the parent's child array.void
MutableTreeNode.setParent
(MutableTreeNode newParent) Sets the parent of the receiver tonewParent
.