Uses of Class
gate.jape.JapeException

Packages that use JapeException
gate.jape   
 

Uses of JapeException in gate.jape
 

Methods in gate.jape that throw JapeException
 void LeftHandSide.addBinding(String bindingName, ComplexPatternElement binding, HashSet bindingNameSet, boolean macroRef)
          Add a binding record.
 void RhsAction.doit(Document doc, Map bindings, AnnotationSet annotations, AnnotationSet inputAS, AnnotationSet outputAS, Ontology ontology)
          Fires the RHS action for a particular LHS match.
abstract  void Transducer.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Transduce a document.
 void SinglePhaseTransducer.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Transduce a document using the annotation set provided and the current rule application style.
 void RightHandSide.createActionClass()
          Create the action class and an instance of it.
 void RightHandSide.instantiateActionClass()
          Create an instance of the action class.
 void RightHandSide.transduce(Document doc, Map bindings, AnnotationSet inputAS, AnnotationSet outputAS, Ontology ontology)
          Makes changes to the document, using LHS bindings.
private  void Batch.parseJape()
          Parse a jape file from Batch.japeURL and store the transducer.
 void Batch.transduce(Corpus coll)
          Process the given collection.
 void Batch.transduce(Document doc)
          Process a single document.
 void Batch.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Process a single document.
 void MultiPhaseTransducer.transduce(Document doc, AnnotationSet input, AnnotationSet output)
          Transduce the document by running each phase in turn.
 void Rule.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Apply the RHS of this rule (LHS must have been matched first).
static Transducer Compiler.parseJape(String japeFileName, String encoding)
          Parse a .jape and return a transducer, or throw exception.
static void Compiler.saveJape(String japeFileName, Transducer transducer)
          Save a .jape, or throw exception.
 

Constructors in gate.jape that throw JapeException
Batch(URL url, String encoding)
          Create a fully initialised instance.
Batch(URL url, String encoding, StatusListener sListener)