Uses of Interface
org.jdesktop.swingx.treetable.MutableTreeTableNode
-
Packages that use MutableTreeTableNode Package Description org.jdesktop.swingx.treetable Contains API required by the JXTreeTable component. -
-
Uses of MutableTreeTableNode in org.jdesktop.swingx.treetable
Classes in org.jdesktop.swingx.treetable that implement MutableTreeTableNode Modifier and Type Class Description classAbstractMutableTreeTableNodeAbstractMutableTreeTableNodeprovides an implementation of most of theMutableTreeTableNodefeatures.classDefaultMutableTreeTableNodeA default implementation of anAbstractMutableTreeTableNodethat returnsgetUserObject().toString()for all value queries.Fields in org.jdesktop.swingx.treetable declared as MutableTreeTableNode Modifier and Type Field Description protected MutableTreeTableNodeAbstractMutableTreeTableNode. parentthis node's parent, or null if this node has no parentFields in org.jdesktop.swingx.treetable with type parameters of type MutableTreeTableNode Modifier and Type Field Description protected java.util.List<MutableTreeTableNode>AbstractMutableTreeTableNode. childrenList 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 MutableTreeTableNode Modifier and Type Method Description java.util.Enumeration<? extends MutableTreeTableNode>AbstractMutableTreeTableNode. children()Returns an enumeration this node's children.java.util.Enumeration<? extends MutableTreeTableNode>MutableTreeTableNode. children()Returns an enumeration this node's children.protected java.util.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 MutableTreeTableNode Modifier and Type Method Description voidAbstractMutableTreeTableNode. add(MutableTreeTableNode child)voidAbstractMutableTreeTableNode. insert(MutableTreeTableNode child, int index)Adds thechildto this node at the specifiedindex.voidMutableTreeTableNode. insert(MutableTreeTableNode child, int index)Adds thechildto this node at the specifiedindex.voidDefaultTreeTableModel. insertNodeInto(MutableTreeTableNode newChild, MutableTreeTableNode parent, int index)Invoked this to insert newChild at location index in parents children.voidAbstractMutableTreeTableNode. remove(MutableTreeTableNode node)Removes the specified childnodefrom this node.voidMutableTreeTableNode. remove(MutableTreeTableNode node)Removes the specified childnodefrom this node.voidDefaultTreeTableModel. removeNodeFromParent(MutableTreeTableNode node)Message this to remove node from its parent.voidAbstractMutableTreeTableNode. setParent(MutableTreeTableNode newParent)Sets the parent of this node tonewParent.voidMutableTreeTableNode. setParent(MutableTreeTableNode newParent)Sets the parent of this node tonewParent.
-