Uses of Interface
org.inxar.syntacs.analyzer.syntactic.Sentence

Packages that use Sentence
com.inxar.syntacs.translator.lr Defines classes which implement LR-specific translation machinery. 
com.inxar.syntacs.translator.regexp Defines classes which implement a Translator for regular expressions. 
com.inxar.syntacs.translator.syntacs Defines classes which implement a Translator for the syntacs grammar itself. 
org.inxar.syntacs.analyzer.syntactic Declares interfaces which model objects used in syntax analysis. 
 

Uses of Sentence in com.inxar.syntacs.translator.lr
 

Methods in com.inxar.syntacs.translator.lr with parameters of type Sentence
 Symbol StandardLRTranslatorInterpreter.reduce(int type, Sentence sentence)
           
 Recovery StandardLRTranslatorInterpreter.recover(int type, Sentence left_context)
           
 

Uses of Sentence in com.inxar.syntacs.translator.regexp
 

Methods in com.inxar.syntacs.translator.regexp with parameters of type Sentence
 Symbol RegexpInterpreter.reduce(int type, Sentence s)
           
 

Uses of Sentence in com.inxar.syntacs.translator.syntacs
 

Methods in com.inxar.syntacs.translator.syntacs with parameters of type Sentence
 Symbol SyntacsInterpreter.reduce(int type, Sentence s)
           
 Recovery SyntacsInterpreter.recover(int type, Sentence left_context)
           
 

Uses of Sentence in org.inxar.syntacs.analyzer.syntactic
 

Methods in org.inxar.syntacs.analyzer.syntactic with parameters of type Sentence
 Symbol ParserInterpreter.reduce(int type, Sentence left_context)
          ParserInterpreter.reduce(int, Sentence) is called when a reduction occurs.
 Recovery ParserInterpreter.recover(int type, Sentence left_context)
          This method will be called by the parser when an ERROR instruction is hit.