Uses of Class
gate.jape.Transducer

Packages that use Transducer
gate.jape   
 

Uses of Transducer in gate.jape
 

Subclasses of Transducer in gate.jape
 class MultiPhaseTransducer
          Represents a complete CPSL grammar, with a phase name, options and rule set (accessible by name and by sequence).
 class Rule
          A CPSL rule.
 class SinglePhaseTransducer
          Represents a complete CPSL grammar, with a phase name, options and rule set (accessible by name and by sequence).
 

Fields in gate.jape declared as Transducer
private  Transducer Batch.transducer
          The JAPE transducer.
 

Methods in gate.jape that return Transducer
 Transducer Batch.getTransducer()
          Get the transducer.
static Transducer Compiler.parseJape(String japeFileName, String encoding)
          Parse a .jape and return a transducer, or throw exception.
 

Methods in gate.jape with parameters of type Transducer
 void MultiPhaseTransducer.addPhase(String name, Transducer phase)
          Add phase.
static void Compiler.saveJape(String japeFileName, Transducer transducer)
          Save a .jape, or throw exception.