Package com.ibm.wala.util.graph
Class BasicTree<T>
- java.lang.Object
-
- com.ibm.wala.util.graph.BasicTree<T>
-
public class BasicTree<T> extends Object
A simple, extremely inefficient tree implementation
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BasicTree<T>
getChild(int i)
T
getChildValue(int i)
int
getMaxChildIndex()
T
getRootValue()
static <T> BasicTree<T>
make(T value)
void
setChild(int i, BasicTree<T> tree)
-
-
-
Constructor Detail
-
BasicTree
protected BasicTree(T value)
-
-