Uses of Class
org.wegra.util.collection.TreeNode

Packages that use TreeNode
org.wegra.util.collection   
 

Uses of TreeNode in org.wegra.util.collection
 

Methods in org.wegra.util.collection that return TreeNode
 TreeNode TreeNode.getParent()
          Returns parent node.
 TreeNode TreeNode.getChildAt(int index)
          Returns the child WTreeNode at index.
 TreeNode TreeNode.removeChild(TreeNode child)
          Removes child from current tree.
 TreeNode Tree.getRoot()
          Returns the root TreeNode.
 

Methods in org.wegra.util.collection with parameters of type TreeNode
 void TreeNode.setParent(TreeNode parent)
          Resets parent node.
 void TreeNode.add(TreeNode child)
          Adds new child to current tree.
 TreeNode TreeNode.removeChild(TreeNode child)
          Removes child from current tree.
 int TreeNode.getIndex(TreeNode child)
          Returns index of specified child.
 void Tree.setRoot(TreeNode root)
          Sets the root TreeNode with specified TreeNode.
static javax.swing.tree.MutableTreeNode Tree.toSwingTreeNode(TreeNode node)
           
 

Constructors in org.wegra.util.collection with parameters of type TreeNode
Tree(TreeNode root)
          Returns a Tree with the specified TreeNode as its root.