edu.umd.cs.findbugs.graph
public class SearchTree<VertexType extends GraphVertex<VertexType>> extends Object
Constructor Summary | |
---|---|
SearchTree(VertexType v)
Create a new search tree. |
Method Summary | |
---|---|
void | addChild(SearchTree<VertexType> child)
Add a child search tree. |
void | addVerticesToSet(Set<VertexType> set)
Add all vertices contained in this search tree to the given
set. |
Iterator<SearchTree<VertexType>> | childIterator()
Return collection of children of this search tree.
|
VertexType | getVertex()
Get the vertex contained in this node. |