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.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 HashSet ParsingFunctions.createFSMs(String string, int type, HashSet initStates, Interpret owner)
           
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