|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
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 |
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 |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |