Uses of Interface
org.jdesktop.swingx.treetable.TreeTableNode
Packages that use TreeTableNode
Package
Description
Contains API required by the JXTreeTable component.
-
Uses of TreeTableNode in org.jdesktop.swingx.treetable
Subinterfaces of TreeTableNode in org.jdesktop.swingx.treetableModifier and TypeInterfaceDescriptioninterface
Defines the requirements for a tree table node object that can change -- by adding or removing child nodes, or by changing the contents of a user object stored in the node.Classes in org.jdesktop.swingx.treetable that implement TreeTableNodeModifier and TypeClassDescriptionclass
AbstractMutableTreeTableNode
provides an implementation of most of theMutableTreeTableNode
features.class
A default implementation of anAbstractMutableTreeTableNode
that returnsgetUserObject().toString()
for all value queries.Methods in org.jdesktop.swingx.treetable that return TreeTableNodeModifier and TypeMethodDescriptionAbstractMutableTreeTableNode.getChildAt
(int childIndex) Overridden to specify the return type.TreeTableNode.getChildAt
(int childIndex) Overridden to specify the return type.AbstractMutableTreeTableNode.getParent()
Overridden to specify the return type.TreeTableNode.getParent()
Overridden to specify the return type.DefaultTreeTableModel.getPathToRoot
(TreeTableNode aNode) Gets the path from the root to the specified node.DefaultTreeTableModel.getRoot()
Returns the root of the tree.Methods in org.jdesktop.swingx.treetable with parameters of type TreeTableNodeModifier and TypeMethodDescriptionDefaultTreeTableModel.getPathToRoot
(TreeTableNode aNode) Gets the path from the root to the specified node.void
DefaultTreeTableModel.setRoot
(TreeTableNode root) Sets the root for this table model.void
DefaultTreeTableModel.setUserObject
(TreeTableNode node, Object userObject) Sets the user object for a node.Constructors in org.jdesktop.swingx.treetable with parameters of type TreeTableNodeModifierConstructorDescriptionCreates a newDefaultTreeTableModel
with the specifiedroot
.DefaultTreeTableModel
(TreeTableNode root, List<?> columnNames) Creates a newDefaultTreeTableModel
with the specifiedroot
and column names.