Uses of Class
org.j4me.collections.TreeNode

Packages that use TreeNode
org.j4me.collections Utility classes that house collections of objects. 
 

Uses of TreeNode in org.j4me.collections
 

Methods in org.j4me.collections that return TreeNode
 TreeNode[] TreeNode.children()
          Gets a list of all the child nodes of this node.
 TreeNode TreeNode.getParent()
          Gets the parent node of this one.
 TreeNode TreeNode.remove(int index)
          Removes the child at position index from the tree.
 

Methods in org.j4me.collections with parameters of type TreeNode
 void TreeNode.add(TreeNode child)
          Adds the child node to this container making this its parent.
 void TreeNode.add(TreeNode child, int index)
          Adds the child node to this container making this its parent.