Uses of Class
unbbayes.util.datastructure.Node

Packages that use Node
unbbayes.util.datastructure   
 

Uses of Node in unbbayes.util.datastructure
 

Fields in unbbayes.util.datastructure declared as Node
 Node<T> Node.parent
           
 

Fields in unbbayes.util.datastructure with type parameters of type Node
 List<Node<T>> Node.children
           
 

Methods in unbbayes.util.datastructure that return Node
 Node<T> Node.getChild(int index)
           
 Node<T> Node.getParent()
           
 Node<T> Tree.getRootElement()
          Return the root Node of the tree.
 

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

Methods in unbbayes.util.datastructure 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> p)
           
 void Tree.setRootElement(Node<T> rootElement)
          Set the root Element for the tree.
 

Method parameters in unbbayes.util.datastructure with type arguments of type Node
 void Node.setChildren(List<Node<T>> children)
          Sets the children of a Node object.
 



Copyright © 2001-2010 University of Brasilia - UnB. All Rights Reserved.