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
abstract  void Transducer.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Transduce a document.
 void Rule.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Apply the RHS of this rule (LHS must have been matched first).
 void MultiPhaseTransducer.transduce(Document doc, AnnotationSet input, AnnotationSet output)
          Transduce the document by running each phase in turn.
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 SinglePhaseTransducer.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Transduce a document using the annotation set provided and the current rule application style.
 void SinglePhaseTransducer.transduce1(Document doc, AnnotationSet annotationSet)
          Transduce a document using the annotation set provided and the current rule application style.
 void SinglePhaseTransducer.transduce2(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.writeActionClass()
          Write out the action class file.
 void RightHandSide.compileActionClass()
          Compile the action class.
 void RightHandSide.readActionClass()
          Read action class bytes, for storing during serialisation.
 void RightHandSide.loadActionClass()
          Load the action class.
 void RightHandSide.defineActionClass()
          Define the action class (after deserialisation).
 void RightHandSide.instantiateActionClass()
          Create an instance of the action class.
 void RightHandSide.transduce(Document doc, AnnotationSet annotations, Map bindings)
          Makes changes to the document, using LHS bindings.
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.
 void RhsAction.doit(Document doc, AnnotationSet annotations, Map bindings)
           
 void LeftHandSide.addBinding(String bindingName, ComplexPatternElement binding, HashSet bindingNameSet, boolean macroRef)
          Add a binding record.
 

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