Uses of Class
gate.creole.morph.Interpret

Packages that use Interpret
gate.creole.morph   
 

Uses of Interpret in gate.creole.morph
 

Fields in gate.creole.morph declared as Interpret
protected  Interpret Morph.existingInterpret
          If this Morph PR is a duplicate of an existing PR, this property will hold a reference to the original PR's Interpret instance.
protected  Interpret Morph.interpret
          Instance of BaseWord class - English Morpher
 

Methods in gate.creole.morph with parameters of type Interpret
static ArrayList ParsingFunctions.andFSMs(String line, HashSet initStates, Interpret owner)
          (abc) -> a -> b -> c ->
static ArrayList ParsingFunctions.andPlusFSMs(String line, HashSet initStates, Interpret owner)
          (abc)+ -> a -> b -> c -> null -> a -> b -> c -> a
static ArrayList ParsingFunctions.andStarFSMs(String line, HashSet initStates, Interpret owner)
          (abc)*
static Set ParsingFunctions.createFSMs(String string, int type, Set initStates, Interpret owner)
           
 void Interpret.init(Interpret existingInterpret)
          Initialize this Interpret by copying pointers to the sharable state of an existing Interpret instance.
static ArrayList ParsingFunctions.orFSMs(String line, HashSet initStates, Interpret owner)
          [abc] -> a, -> b, -> c
static ArrayList ParsingFunctions.orPlusFSMs(String line, HashSet initStates, Interpret owner)
          [abc]+ each element can travel to itself and can travel to next one
static ArrayList ParsingFunctions.orStarFSMs(String line, HashSet initStates, Interpret owner)
          [abc]* each element can have reference to adjecent ones and to itself
 void Morph.setExistingInterpret(Interpret existingInterpret)
          Only for use by the duplication mechanism.