Package | Description |
---|---|
org.jdesktop.swingx.treetable |
Contains API required by the JXTreeTable component.
|
Modifier and Type | Interface | Description |
---|---|---|
interface |
MutableTreeTableNode |
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.
|
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractMutableTreeTableNode |
AbstractMutableTreeTableNode provides an implementation of most of
the MutableTreeTableNode features. |
class |
DefaultMutableTreeTableNode |
Modifier and Type | Method | Description |
---|---|---|
TreeTableNode |
AbstractMutableTreeTableNode.getChildAt(int childIndex) |
Overridden to specify the return type.
|
TreeTableNode |
TreeTableNode.getChildAt(int childIndex) |
Overridden to specify the return type.
|
TreeTableNode |
AbstractMutableTreeTableNode.getParent() |
Overridden to specify the return type.
|
TreeTableNode |
TreeTableNode.getParent() |
Overridden to specify the return type.
|
TreeTableNode[] |
DefaultTreeTableModel.getPathToRoot(TreeTableNode aNode) |
Gets the path from the root to the specified node.
|
TreeTableNode |
DefaultTreeTableModel.getRoot() |
Returns the root of the tree.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.Enumeration<? extends TreeTableNode> |
TreeTableNode.children() |
Returns an enumeration this node's children.
|
Modifier and Type | Method | Description |
---|---|---|
TreeTableNode[] |
DefaultTreeTableModel.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.
|
Constructor | Description |
---|---|
DefaultTreeTableModel(TreeTableNode root) |
Creates a new
DefaultTreeTableModel with the specified
root . |
DefaultTreeTableModel(TreeTableNode root,
java.util.List<?> columnNames) |
Creates a new
DefaultTreeTableModel with the specified
root . |