Uses of Interface
org.inxar.syntacs.translator.lr.LRTranslationComponent

Packages that use LRTranslationComponent
com.inxar.syntacs.analyzer.lexical Defines classes which implement the lexical analyzer interfaces. 
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.lexical Declares interfaces which model objects used in lexical analysis. 
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 LRTranslationComponent in com.inxar.syntacs.analyzer.lexical
 

Classes in com.inxar.syntacs.analyzer.lexical that implement LRTranslationComponent
 class StandardLexer
          Concrete Lexer implementation which uses a DFA for the recognition engine.
 

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

Classes in com.inxar.syntacs.analyzer.syntactic that implement LRTranslationComponent
 class StandardParser
          Concrete implementation of Parser.
 

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

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

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

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

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

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

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

Subinterfaces of LRTranslationComponent in org.inxar.syntacs.analyzer.lexical
 interface Lexer
          The Lexer is responsible for reading an Input stream and breaking it up into a stream of tokens.
 interface LexerInterpreter
          The LexerInterpreter is responsible for handling "lexer events".
 

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

Subinterfaces of LRTranslationComponent in org.inxar.syntacs.analyzer.syntactic
 interface Parser
          The Parser is responsible for managing the construction of the parse tree; to do so it interacts with the LexerInterpreter (presumably) and the ParserInterpreter.
 interface ParserInterpreter
          The ParserInterpreter interface is reponsible for handling "parser events".
 

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

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