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

Packages that use Auditor
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. 
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 Auditor in com.inxar.syntacs.translator
 

Classes in com.inxar.syntacs.translator that implement Auditor
 class StandardAuditor
          Standard implementation of Auditor.
 

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

Methods in com.inxar.syntacs.translator.lr that return Auditor
 Auditor AbstractLRTranslationComponent.getAuditor()
           
 Auditor StandardLRTranslatorGrammar.getAuditor()
           
 

Methods in com.inxar.syntacs.translator.lr with parameters of type Auditor
 void AbstractLRTranslationComponent.setAuditor(Auditor auditor)
           
 void StandardLRTranslatorGrammar.setAuditor(Auditor auditor)
           
 

Uses of Auditor in org.inxar.syntacs.translator
 

Methods in org.inxar.syntacs.translator that return Auditor
 Auditor TranslationException.getAuditor()
           
 Auditor RuntimeTranslationException.getAuditor()
           
 

Constructors in org.inxar.syntacs.translator with parameters of type Auditor
TranslationException(Auditor auditor)
          Constructs a TranslationException with the given Auditor.
TranslationException(Auditor auditor, String msg)
          Constructs a TranslationException with the given message and Auditor.
TranslationException(Auditor auditor, Throwable nested)
          Constructs a TranslationException with the given nested Throwable and Auditor.
TranslationException(Auditor auditor, String msg, Throwable nested)
          Constructs a TranslationException with the given nested Throwable and Auditor.
RuntimeTranslationException(Auditor auditor)
          Constructs a RuntimeTranslationException with the given Auditor.
RuntimeTranslationException(Auditor auditor, String msg)
          Constructs a RuntimeTranslationException with the given message and Auditor.
RuntimeTranslationException(Auditor auditor, Throwable nested)
          Constructs a RuntimeTranslationException with the given nested Throwable and Auditor.
RuntimeTranslationException(Auditor auditor, String msg, Throwable nested)
          Constructs a RuntimeTranslationException with the given nested Throwable and Auditor.
 

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

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

Methods in org.inxar.syntacs.translator.lr with parameters of type Auditor
 void LRTranslationComponent.setAuditor(Auditor auditor)
          Sets the current Auditor to the given instance.