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

Packages that use Complaint
com.inxar.syntacs.translator Defines classes which implement several components used during the translation process. 
org.inxar.syntacs.translator Declares interfaces which abstract the lexing and parsing processes into a single translation process. 
 

Uses of Complaint in com.inxar.syntacs.translator
 

Classes in com.inxar.syntacs.translator that implement Complaint
 class StandardAuditor.StandardComplaint
           
 

Methods in com.inxar.syntacs.translator that return Complaint
 Complaint StandardAuditor.notify(int type, int line, String msg)
           
 Complaint StandardAuditor.notify(int type, String msg)
           
 Complaint StandardAuditor.notify(int type, String msg, Input in, int off, int len)
           
 Complaint StandardAuditor.notify(Complaint d)
           
 

Methods in com.inxar.syntacs.translator with parameters of type Complaint
 Complaint StandardAuditor.notify(Complaint d)
           
 

Uses of Complaint in org.inxar.syntacs.translator
 

Methods in org.inxar.syntacs.translator that return Complaint
 Complaint Auditor.notify(Complaint complaint)
          Adds the given Complaint to the end of the the internal List of complaints and returns the same object to the caller.
 Complaint Auditor.notify(int type, int line, String msg)
          Creates a new Complaint of the given type having the given message and given line number.
 Complaint Auditor.notify(int type, String msg)
          Creates a new Complaint of the given type having the given message.
 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.
 

Methods in org.inxar.syntacs.translator with parameters of type Complaint
 Complaint Auditor.notify(Complaint complaint)
          Adds the given Complaint to the end of the the internal List of complaints and returns the same object to the caller.