Uses of Class
net.guha.util.cdk.Node

Uses of Node in net.guha.util.cdk
 

Fields in net.guha.util.cdk with type parameters of type Node
 java.util.List<Node<T>> Node.children
           
 

Methods in net.guha.util.cdk that return Node
 Node<T> Tree.getRootElement()
          Return the root Node of the tree.
 

Methods in net.guha.util.cdk that return types with arguments of type Node
 java.util.List<Node<T>> Node.getChildren()
          Return the children of Node.
 java.util.List<Node<T>> Tree.toList()
          Returns the Tree as a List of Node objects.
 

Methods in net.guha.util.cdk with parameters of type Node
 void Node.addChild(Node<T> child)
          Adds a child to the list of children for this Node.
 void Node.insertChildAt(int index, Node<T> child)
          Inserts a Node at the specified position in the child list.
 void Tree.setRootElement(Node<T> rootElement)
          Set the root Element for the tree.
 

Method parameters in net.guha.util.cdk with type arguments of type Node
 void Node.setChildren(java.util.List<Node<T>> children)
          Sets the children of a Node object.