Package | Description |
---|---|
org.jdesktop.swingx.treetable |
Contains API required by the JXTreeTable component.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMutableTreeTableNode
AbstractMutableTreeTableNode provides an implementation of most of
the MutableTreeTableNode features. |
class |
DefaultMutableTreeTableNode
A default implementation of an
AbstractMutableTreeTableNode that
returns getUserObject().toString() for all value queries. |
Modifier and Type | Field and Description |
---|---|
protected MutableTreeTableNode |
AbstractMutableTreeTableNode.parent
this node's parent, or null if this node has no parent
|
Modifier and Type | Field and Description |
---|---|
protected List<MutableTreeTableNode> |
AbstractMutableTreeTableNode.children
List of children, if this node has no children the list will be empty.
|
Modifier and Type | Method and Description |
---|---|
Enumeration<? extends MutableTreeTableNode> |
MutableTreeTableNode.children()
Returns an enumeration this node's children.
|
Enumeration<? 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.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractMutableTreeTableNode.add(MutableTreeTableNode child) |
void |
MutableTreeTableNode.insert(MutableTreeTableNode child,
int index)
Adds the
child to this node at the specified index . |
void |
AbstractMutableTreeTableNode.insert(MutableTreeTableNode child,
int index)
Adds the
child to this node at the specified index . |
void |
DefaultTreeTableModel.insertNodeInto(MutableTreeTableNode newChild,
MutableTreeTableNode parent,
int index)
Invoked this to insert newChild at location index in parents children.
|
void |
MutableTreeTableNode.remove(MutableTreeTableNode node)
Removes the specified child
node from this node. |
void |
AbstractMutableTreeTableNode.remove(MutableTreeTableNode node)
Removes the specified child
node from this node. |
void |
DefaultTreeTableModel.removeNodeFromParent(MutableTreeTableNode node)
Message this to remove node from its parent.
|
void |
MutableTreeTableNode.setParent(MutableTreeTableNode newParent)
Sets the parent of this node to
newParent . |
void |
AbstractMutableTreeTableNode.setParent(MutableTreeTableNode newParent)
Sets the parent of this node to
newParent . |
Copyright © 2013. All Rights Reserved.