Uses of Interface
org.inxar.syntacs.translator.TranslatorGrammar

Packages that use TranslatorGrammar
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 Declares interfaces which abstract the lexing and parsing processes into a single translation process. 
org.inxar.syntacs.translator.lr Declares interfaces specific to LR translation. 
 

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

Classes in com.inxar.syntacs.translator.lr that implement TranslatorGrammar
 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 TranslatorGrammar
 TranslatorGrammar XML2LRTranslatorGrammarTransformer.transform(String uri)
           
 TranslatorGrammar XML2LRTranslatorGrammarTransformer.transform(org.w3c.dom.Element doc)
           
 TranslatorGrammar StandardLRTranslator.getGrammar()
           
 

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

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

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

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

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

Classes in com.inxar.syntacs.translator.test that implement TranslatorGrammar
 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 TranslatorGrammar in org.inxar.syntacs.translator
 

Methods in org.inxar.syntacs.translator that return TranslatorGrammar
 TranslatorGrammar Translator.getGrammar()
          Returns the TranslatorGrammar for this Translator.
 

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

Subinterfaces of TranslatorGrammar in org.inxar.syntacs.translator.lr
 interface LRTranslatorGrammar
          The LRTranslatorGrammar interface describes the symbolic components of a grammar, relevant to LR parsing algorithms.