Uses of Class
sem.graph.Node

Packages that use Node
sem.graph   
 

Uses of Node in sem.graph
 

Fields in sem.graph declared as Node
static Node Graph.ellip
          Node for representing ellipes in the graph.
static Node Graph.nil
          Node for representing missing nodes.
 

Methods in sem.graph that return Node
 Node Graph.addNode(Node n)
          Add a new node to the graph.
 Node Graph.addNode(java.lang.String lemma, java.lang.String pos)
          Create and add a new node.
 Node Node.clone()
          Create a new independent node with the same lemma and POS.
 Node Edge.getDep()
          Get the dependent node.
 Node Edge.getHead()
          Get the head node.
 

Methods in sem.graph that return types with arguments of type Node
 java.util.ArrayList<Node> Graph.getNodes()
          Get the list of nodes in this graph.
 

Methods in sem.graph with parameters of type Node
 Edge Graph.addEdge(java.lang.String label, Node head, Node dep)
          Create and add a new edge.
 Node Graph.addNode(Node n)
          Add a new node to the graph.
 

Constructors in sem.graph with parameters of type Node
Edge(java.lang.String label, Node head, Node dep)
          Create a new edge between two nodes.