Uses of Interface
org.jdesktop.swingx.treetable.MutableTreeTableNode
Packages that use MutableTreeTableNode
Package
Description
Contains API required by the JXTreeTable component.
-
Uses of MutableTreeTableNode in org.jdesktop.swingx.treetable
Classes in org.jdesktop.swingx.treetable that implement MutableTreeTableNodeModifier and TypeClassDescriptionclass
AbstractMutableTreeTableNode
provides an implementation of most of theMutableTreeTableNode
features.class
A default implementation of anAbstractMutableTreeTableNode
that returnsgetUserObject().toString()
for all value queries.Fields in org.jdesktop.swingx.treetable declared as MutableTreeTableNodeModifier and TypeFieldDescriptionprotected MutableTreeTableNode
AbstractMutableTreeTableNode.parent
this node's parent, or null if this node has no parentFields in org.jdesktop.swingx.treetable with type parameters of type MutableTreeTableNodeModifier and TypeFieldDescriptionprotected final List<MutableTreeTableNode>
AbstractMutableTreeTableNode.children
List of children, if this node has no children the list will be empty.Methods in org.jdesktop.swingx.treetable that return types with arguments of type MutableTreeTableNodeModifier and TypeMethodDescriptionEnumeration<? extends MutableTreeTableNode>
AbstractMutableTreeTableNode.children()
Returns an enumeration this node's children.protected List<MutableTreeTableNode>
AbstractMutableTreeTableNode.createChildrenList()
Creates the list used to manage the children of this node.Methods in org.jdesktop.swingx.treetable with parameters of type MutableTreeTableNodeModifier and TypeMethodDescriptionvoid
AbstractMutableTreeTableNode.add
(MutableTreeTableNode child) add a child note to the treevoid
AbstractMutableTreeTableNode.insert
(MutableTreeTableNode child, int index) Adds thechild
to this node at the specifiedindex
.void
MutableTreeTableNode.insert
(MutableTreeTableNode child, int index) Adds thechild
to this node at the specifiedindex
.void
DefaultTreeTableModel.insertNodeInto
(MutableTreeTableNode newChild, MutableTreeTableNode parent, int index) Invoked this to insert newChild at location index in parents children.void
AbstractMutableTreeTableNode.remove
(MutableTreeTableNode node) Removes the specified childnode
from this node.void
MutableTreeTableNode.remove
(MutableTreeTableNode node) Removes the specified childnode
from this node.void
DefaultTreeTableModel.removeNodeFromParent
(MutableTreeTableNode node) Message this to remove node from its parent.void
AbstractMutableTreeTableNode.setParent
(MutableTreeTableNode newParent) Sets the parent of this node tonewParent
.void
MutableTreeTableNode.setParent
(MutableTreeTableNode newParent) Sets the parent of this node tonewParent
.