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

Packages that use LRTranslatorGrammar
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. 
com.inxar.syntacs.translator.test Defines classes which implement translators for several test grammars. 
org.inxar.syntacs.translator.lr Declares interfaces specific to LR translation. 
 

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

Classes in com.inxar.syntacs.translator.lr that implement LRTranslatorGrammar
 class ProxyLRTranslatorGrammar
          This class is a hack; it is required due to the dis-synchrony between the ID number of the grammar symbols when they are parsed into the StandardLRTranslatorGrammar instance and the ID numbers of the grammar symbols after they exists in the DPA.
 class StandardLRTranslatorGrammar
          This is a "mutable" implementation of LRTranslatorGrammar used by both the SyntacsTranslator and the XML2LRTranslatorGrammarTransformer when a grammar is parsed into memory.
 

Methods in com.inxar.syntacs.translator.lr that return LRTranslatorGrammar
 LRTranslatorGrammar AbstractLRTranslationComponent.getLRTranslatorGrammar()
           
 

Methods in com.inxar.syntacs.translator.lr with parameters of type LRTranslatorGrammar
 void AbstractLRTranslationComponent.setLRTranslatorGrammar(LRTranslatorGrammar grammar)
           
 void StandardLRTranslator.setLRTranslatorGrammar(LRTranslatorGrammar grammar)
           
 

Constructors in com.inxar.syntacs.translator.lr with parameters of type LRTranslatorGrammar
ProxyLRTranslatorGrammar(LRTranslatorGrammar g, ContextFreeSet c)
           
 

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

Classes in com.inxar.syntacs.translator.regexp that implement LRTranslatorGrammar
 class RegexpGrammar
          Automatically generated by Syntacs Translation Toolkit on Fri Jul 06 12:05:08 PDT 2001
 

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

Classes in com.inxar.syntacs.translator.syntacs that implement LRTranslatorGrammar
 class SyntacsGrammar
          Automatically generated by Syntacs Translation Toolkit on Fri Jul 06 12:05:11 PDT 2001
 

Uses of LRTranslatorGrammar in com.inxar.syntacs.translator.test
 

Classes in com.inxar.syntacs.translator.test that implement LRTranslatorGrammar
 class AbbGrammar
          Automatically generated by Syntacs Translation Toolkit on Fri Jul 06 12:04:58 PDT 2001
 class EtfGrammar
          Automatically generated by Syntacs Translation Toolkit on Fri Jul 06 12:05:01 PDT 2001
 class SccGrammar
          Automatically generated by Syntacs Translation Toolkit on Fri Jul 06 12:05:04 PDT 2001
 

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

Methods in org.inxar.syntacs.translator.lr that return LRTranslatorGrammar
 LRTranslatorGrammar LRTranslationComponent.getLRTranslatorGrammar()
          Returns the current LRTranslatorGrammar to the given instance.
 

Methods in org.inxar.syntacs.translator.lr with parameters of type LRTranslatorGrammar
 void LRTranslator.setLRTranslatorGrammar(LRTranslatorGrammar grammar)
          Sets the LRTranslatorGrammar instance.
 void LRTranslationComponent.setLRTranslatorGrammar(LRTranslatorGrammar grammar)
          Sets the current LRTranslatorGrammar to the given instance.