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

Packages that use AuditEvent
com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework. 
com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks. 
com.puppycrawl.tools.checkstyle.filters Contains the filters that are bundled with the main distribution. 
 

Uses of AuditEvent in com.puppycrawl.tools.checkstyle
 

Methods in com.puppycrawl.tools.checkstyle with parameters of type AuditEvent
 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 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)
           
 

Uses of AuditEvent in com.puppycrawl.tools.checkstyle.api
 

Methods in com.puppycrawl.tools.checkstyle.api with parameters of type AuditEvent
 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.
 boolean Filter.accept(AuditEvent aEvent)
          Determines whether or not a filtered AuditEvent is accepted.
 boolean FilterSet.accept(AuditEvent aEvent)
           
 void SeverityLevelCounter.addError(AuditEvent aEvt)
           
 void SeverityLevelCounter.addException(AuditEvent aEvt, java.lang.Throwable aThrowable)
           
 void SeverityLevelCounter.auditStarted(AuditEvent aEvt)
           
 void SeverityLevelCounter.fileStarted(AuditEvent aEvt)
           
 void SeverityLevelCounter.auditFinished(AuditEvent aEvt)
           
 void SeverityLevelCounter.fileFinished(AuditEvent aEvt)
           
 

Uses of AuditEvent in com.puppycrawl.tools.checkstyle.filters
 

Methods in com.puppycrawl.tools.checkstyle.filters with parameters of type AuditEvent
 boolean SeverityMatchFilter.accept(AuditEvent aEvent)
           
 boolean SuppressElement.accept(AuditEvent aEvent)
           
 boolean SuppressionCommentFilter.accept(AuditEvent aEvent)
           
 boolean SuppressionCommentFilter.Tag.isMatch(AuditEvent aEvent)
          Determines whether the source of an audit event matches the text of this tag.
 boolean SuppressionFilter.accept(AuditEvent aEvent)
           
 


Back to the Checkstyle Home Page