Uses of Class
org.apache.uima.internal.util.GraphNode
-
Packages that use GraphNode Package Description org.apache.uima.internal.util -
-
Uses of GraphNode in org.apache.uima.internal.util
Fields in org.apache.uima.internal.util declared as GraphNode Modifier and Type Field Description protected GraphNode
Graph. root
Fields in org.apache.uima.internal.util with type parameters of type GraphNode Modifier and Type Field Description protected ArrayList<GraphNode>
GraphNode. predecessors
protected ArrayList<GraphNode>
GraphNode. successors
Methods in org.apache.uima.internal.util that return GraphNode Modifier and Type Method Description GraphNode
GraphNode. getPredecessor(int i)
Get a specific predecessor node.GraphNode
Graph. getRoot()
GraphNode
GraphNode. getSuccessor(int i)
Get a specific successor node.Methods in org.apache.uima.internal.util with parameters of type GraphNode Modifier and Type Method Description void
GraphNode. addPredecessor(GraphNode pred)
Add a new predecessor node.void
GraphNode. addSuccessor(GraphNode succ)
Add a new successor node.static void
Graph. collectNodes(GraphNode n, Vector<GraphNode> nodes)
void
GraphNode. connect(GraphNode node)
Connect this node to a new node.protected static int
Graph. getNodeCode(GraphNode n, Vector<GraphNode> nodes)
void
Graph. setRoot(GraphNode root)
Set the root of the graph.Method parameters in org.apache.uima.internal.util with type arguments of type GraphNode Modifier and Type Method Description static void
Graph. collectNodes(GraphNode n, Vector<GraphNode> nodes)
protected static int
Graph. getNodeCode(GraphNode n, Vector<GraphNode> nodes)
-