Package tilda.utils
Class Graph.Node<T>
- java.lang.Object
-
- tilda.utils.Graph.Node<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Graph.Node<T>>
_children
protected T
_v
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Graph.Node<T>
addChild(T v)
java.util.List<Graph.Node<T>>
getChildrenNodes()
T
getValue()
-
-
-
Field Detail
-
_v
protected T _v
-
_children
protected java.util.List<Graph.Node<T>> _children
-
-
Constructor Detail
-
Node
public Node(T v)
-
-
Method Detail
-
getValue
public T getValue()
-
getChildrenNodes
public java.util.List<Graph.Node<T>> getChildrenNodes()
-
addChild
public Graph.Node<T> addChild(T v)
-
-