Uses of Class
com.puppycrawl.tools.checkstyle.AuditEvent

Packages that use AuditEvent
com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework. 
 

Uses of AuditEvent in com.puppycrawl.tools.checkstyle
 

Methods in com.puppycrawl.tools.checkstyle with parameters of type AuditEvent
 void XMLLogger.auditStarted(AuditEvent aEvt)
           
 void XMLLogger.auditFinished(AuditEvent aEvt)
           
 void XMLLogger.fileStarted(AuditEvent aEvt)
           
 void XMLLogger.fileFinished(AuditEvent aEvt)
           
 void XMLLogger.addError(AuditEvent aEvt)
           
 void XMLLogger.addException(AuditEvent aEvt, java.lang.Throwable aThrowable)
           
 void DefaultLogger.addError(AuditEvent aEvt)
          Print an Emacs compliant line on the error stream.
 void DefaultLogger.addException(AuditEvent aEvt, java.lang.Throwable aThrowable)
           
 void DefaultLogger.auditStarted(AuditEvent aEvt)
           
 void DefaultLogger.fileFinished(AuditEvent aEvt)
           
 void DefaultLogger.fileStarted(AuditEvent aEvt)
           
 void DefaultLogger.auditFinished(AuditEvent aEvt)
           
 void AuditListener.auditStarted(AuditEvent aEvt)
          notify that the audit is about to start
 void AuditListener.auditFinished(AuditEvent aEvt)
          notify that the audit is finished
 void AuditListener.fileStarted(AuditEvent aEvt)
          notify that audit is about to start on a specific file
 void AuditListener.fileFinished(AuditEvent aEvt)
          notify that audit is finished on a specific file
 void AuditListener.addError(AuditEvent aEvt)
          notify that an audit error was discovered on a specific file
 void AuditListener.addException(AuditEvent aEvt, java.lang.Throwable aThrowable)
          notify that an exception happened while performing audit
 


Back to the Checkstyle Home Page