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

Packages that use ParserInterpreter
com.inxar.syntacs.analyzer.syntactic Defines classes which implement the syntax analyzer interfaces. 
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. 
org.inxar.syntacs.translator.lr Declares interfaces specific to LR translation. 
 

Uses of ParserInterpreter in com.inxar.syntacs.analyzer.syntactic
 

Methods in com.inxar.syntacs.analyzer.syntactic that return ParserInterpreter
 ParserInterpreter StandardParser.getParserInterpreter()
           
 

Methods in com.inxar.syntacs.analyzer.syntactic with parameters of type ParserInterpreter
 void StandardParser.setParserInterpreter(ParserInterpreter interpreter)
           
 

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

Classes in com.inxar.syntacs.translator.lr that implement ParserInterpreter
 class StandardLRTranslatorInterpreter
          Concrete implementation of LRInterpreter.
 

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

Classes in com.inxar.syntacs.translator.regexp that implement ParserInterpreter
 class RegexpInterpreter
          Interpreter used in the translation of regular expression strings.
 

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

Classes in com.inxar.syntacs.translator.syntacs that implement ParserInterpreter
 class SyntacsInterpreter
          Interpreter used in the translation of newtacs grammar files (.stt).
 

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

Methods in org.inxar.syntacs.analyzer.syntactic that return ParserInterpreter
 ParserInterpreter Parser.getParserInterpreter()
          Gets the ParserInterpreter.
 

Methods in org.inxar.syntacs.analyzer.syntactic with parameters of type ParserInterpreter
 void Parser.setParserInterpreter(ParserInterpreter interpreter)
          Sets the ParserInterpreter.
 

Uses of ParserInterpreter in org.inxar.syntacs.translator.lr
 

Subinterfaces of ParserInterpreter in org.inxar.syntacs.translator.lr
 interface LRTranslatorInterpreter
          The LRTranslatorInterpreter interface is a union of the LexerInterpreter and ParserInterpreter interfaces.