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

Packages that use Translator
com.inxar.syntacs Contains the command-line front-ends to the Syntacs Translation Toolkit (STT) for compiling, running, and testing. 
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 Translator in com.inxar.syntacs
 

Methods in com.inxar.syntacs that return Translator
static Translator Compile.processXML(String uri, Properties p)
          Processes an XML grammar and returns the corresponding Translator for the grammar.
static Translator Compile.processSTT(String file, Properties p)
          Processes an STT grammar and returns the corresponding Translator for the grammar.
 

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

Classes in com.inxar.syntacs.translator.lr that implement Translator
 class StandardLRTranslator
          Standard implementation of LRTranslator.
 

Methods in com.inxar.syntacs.translator.lr that return Translator
 Translator StandardLRTranslatorGrammar.newTranslator()
           
 Translator StandardLRTranslatorGrammar.newTranslator(Properties p)
           
 Translator ProxyLRTranslatorGrammar.newTranslator()
           
 Translator ProxyLRTranslatorGrammar.newTranslator(Properties p)
           
 

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

Methods in com.inxar.syntacs.translator.regexp that return Translator
 Translator RegexpGrammar.newTranslator()
           
 Translator RegexpGrammar.newTranslator(Properties p)
           
 

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

Methods in com.inxar.syntacs.translator.syntacs that return Translator
 Translator SyntacsGrammar.newTranslator()
           
 Translator SyntacsGrammar.newTranslator(Properties p)
           
 

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

Methods in com.inxar.syntacs.translator.test that return Translator
 Translator AbbGrammar.newTranslator()
           
 Translator AbbGrammar.newTranslator(Properties p)
           
 Translator EtfGrammar.newTranslator()
           
 Translator EtfGrammar.newTranslator(Properties p)
           
 Translator SccGrammar.newTranslator()
           
 Translator SccGrammar.newTranslator(Properties p)
           
 

Uses of Translator in org.inxar.syntacs.translator
 

Methods in org.inxar.syntacs.translator that return Translator
 Translator TranslatorGrammar.newTranslator()
          Returns a new Translator for this TranslatorGrammar having some default set of properties.
 Translator TranslatorGrammar.newTranslator(Properties properties)
          Returns a new Translator for this TranslatorGrammar using the given Properties.
 

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

Subinterfaces of Translator in org.inxar.syntacs.translator.lr
 interface LRTranslator
          A LRTranslator is a translator which uses LR-parsing.