Uses of Interface
org.inxar.syntacs.analyzer.lexical.LexerInterpreter

Packages that use LexerInterpreter
com.inxar.syntacs.analyzer.lexical Defines classes which implement the lexical 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.lexical Declares interfaces which model objects used in lexical analysis. 
org.inxar.syntacs.translator.lr Declares interfaces specific to LR translation. 
 

Uses of LexerInterpreter in com.inxar.syntacs.analyzer.lexical
 

Methods in com.inxar.syntacs.analyzer.lexical that return LexerInterpreter
 LexerInterpreter StandardLexer.getLexerInterpreter()
           
 

Methods in com.inxar.syntacs.analyzer.lexical with parameters of type LexerInterpreter
 void StandardLexer.setLexerInterpreter(LexerInterpreter interpreter)
           
 

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

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

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

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

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

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

Uses of LexerInterpreter in org.inxar.syntacs.analyzer.lexical
 

Methods in org.inxar.syntacs.analyzer.lexical that return LexerInterpreter
 LexerInterpreter Lexer.getLexerInterpreter()
          Gets the Listener to be notified of token Symbol events.
 

Methods in org.inxar.syntacs.analyzer.lexical with parameters of type LexerInterpreter
 void Lexer.setLexerInterpreter(LexerInterpreter interpreter)
          Sets the Listener to be notified of token Symbol events.
 

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

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