Uses of Interface
org.inxar.syntacs.analyzer.Input

Packages that use Input
com.inxar.syntacs.analyzer Defines classes which support lexical and syntactic analysis. 
com.inxar.syntacs.translator Defines classes which implement several components used during the translation process. 
com.inxar.syntacs.translator.lr Defines classes which implement LR-specific translation machinery. 
com.inxar.syntacs.translator.syntacs Defines classes which implement a Translator for the syntacs grammar itself. 
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 Input in com.inxar.syntacs.analyzer
 

Classes in com.inxar.syntacs.analyzer that implement Input
 class StandardInput
          Concrete implementation of Input which wraps a java.io.Reader.
 

Uses of Input in com.inxar.syntacs.translator
 

Methods in com.inxar.syntacs.translator with parameters of type Input
 Complaint StandardAuditor.notify(int type, String msg, Input in, int off, int len)
           
 

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

Methods in com.inxar.syntacs.translator.lr that return Input
 Input AbstractLRTranslationComponent.getInput()
           
 Input StandardLRTranslatorGrammar.getInput()
           
 

Methods in com.inxar.syntacs.translator.lr with parameters of type Input
 void AbstractLRTranslationComponent.setInput(Input in)
           
 void StandardLRTranslatorGrammar.setInput(Input in)
           
 void StandardLRTranslator.setInput(Input in)
           
 

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

Methods in com.inxar.syntacs.translator.syntacs with parameters of type Input
 void SyntacsInterpreter.setInput(Input in)
           
 

Uses of Input in org.inxar.syntacs.translator
 

Methods in org.inxar.syntacs.translator with parameters of type Input
 Complaint Auditor.notify(int type, String msg, Input in, int offset, int length)
          Creates a new Complaint of the given type having the given message at the given Input offset with the given length.
 

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

Methods in org.inxar.syntacs.translator.lr that return Input
 Input LRTranslationComponent.getInput()
          Returns the current Input instance.
 

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