Uses of Class
gate.jape.JapeException

Packages that use JapeException
gate.fsm   
gate.jape   
 

Uses of JapeException in gate.fsm
 

Methods in gate.fsm that throw JapeException
 void TestFSM.setUp()
           
 

Uses of JapeException in gate.jape
 

Methods in gate.jape that throw JapeException
 void LeftHandSide.addBinding(String bindingName, ComplexPatternElement binding, com.objectspace.jgl.HashSet bindingNameSet, boolean macroRef)
          Add a binding record.
 void RhsAction.doit(Document doc, AnnotationSet annotations, Map bindings)
           
abstract  void Transducer.transduce(Document doc, AnnotationSet inputAS, AnnotationSet outputAS)
          Transduce a document.
 void SinglePhaseTransducer.transduce1(Document doc, AnnotationSet annotationSet)
          Transduce a document using the annotation set provided and the current rule application style.
 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.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.
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 TestJape.testBatch()
          Batch run
 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)