Uses of Interface
gate.Node

Packages that use Node
gate This package contains the public interface to the GATE Java API.  
gate.annotation   
gate.fsm   
 

Uses of Node in gate
 

Methods in gate that return Node
 Node AnnotationSet.firstNode()
          Get the node with the smallest offset
 Node AnnotationSet.lastNode()
          Get the node with the largest offset
 Node AnnotationSet.nextNode(Node node)
          Get the first node that is relevant for this annotation set and which has the offset larger than the one of the node provided.
 Node SimpleAnnotation.getStartNode()
          The start node.
 Node SimpleAnnotation.getEndNode()
          The end node.
 

Methods in gate with parameters of type Node
 Node AnnotationSet.nextNode(Node node)
          Get the first node that is relevant for this annotation set and which has the offset larger than the one of the node provided.
 Integer SimpleAnnotationSet.add(Node start, Node end, String type, FeatureMap features)
          Create and add an annotation with pre-existing nodes, and return its id
 

Uses of Node in gate.annotation
 

Classes in gate.annotation that implement Node
 class NodeImpl
          Provides an implementation for the interface gate.Node.
 

Methods in gate.annotation that return Node
 Node AnnotationImpl.getStartNode()
          The start node.
 Node AnnotationImpl.getEndNode()
          The end node.
 Node AnnotationSetImpl.firstNode()
          Get the node with the smallest offset
 Node AnnotationSetImpl.lastNode()
          Get the node with the largest offset
 Node AnnotationSetImpl.nextNode(Node node)
          Get the first node that is relevant for this annotation set and which has the offset larger than the one of the node provided.
 

Methods in gate.annotation with parameters of type Node
 Node AnnotationSetImpl.nextNode(Node node)
          Get the first node that is relevant for this annotation set and which has the offset larger than the one of the node provided.
 Integer AnnotationSetImpl.add(Node start, Node end, String type, FeatureMap features)
          Create and add an annotation with pre-existing nodes, and return its id
 

Uses of Node in gate.fsm
 

Methods in gate.fsm that return Node
 Node FSMInstance.getStartAGPosition()
          Returns the node in the AnnotationSet from which this FSM instance started the matching process.
 Node FSMInstance.getAGPosition()
          Returns the node up to which this FSM instance advanced in the Annotation graph during the matching process.
 

Methods in gate.fsm with parameters of type Node
 void FSMInstance.setAGPosition(Node node)
          Sets the current position in the AnnotationSet.
static FSMInstance FSMInstance.getNewInstance(FSM supportGraph, State FSMPosition, Node startNode, Node AGPosition, HashMap bindings, Document doc)
          Static method that provides new FSM instances.
 

Constructors in gate.fsm with parameters of type Node
FSMInstance(FSM supportGraph, State FSMPosition, Node startNode, Node AGPosition, HashMap bindings, Document document)
          Creates a new FSMInstance object.