Uses of Class
edu.columbia.cs.utils.Node

Packages that use Node
edu.columbia.cs.utils   
 

Uses of Node in edu.columbia.cs.utils
 

Fields in edu.columbia.cs.utils declared as Node
 Node<T> Node.parent
           
 

Fields in edu.columbia.cs.utils with type parameters of type Node
 java.util.List<Node<T>> Node.children
           
 

Methods in edu.columbia.cs.utils that return Node
 Node<T> Node.getParent()
           
 

Methods in edu.columbia.cs.utils that return types with arguments of type Node
 java.util.List<Node<T>> Node.getChildren()
          Return the children of Node.
 

Methods in edu.columbia.cs.utils 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 Node.setParent(Node<T> parent)
           
 

Method parameters in edu.columbia.cs.utils with type arguments of type Node
 void Node.setChildren(java.util.List<Node<T>> children)
          Sets the children of a Node object.
 

Constructors in edu.columbia.cs.utils with parameters of type Node
Node(Node<T> parent, T data)
          Convenience ctor to create a Node with an instance of T.