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 XMLLogger.addError(AuditEvent aEvt)
          Notify that an audit error was discovered on a specific file.
 void DefaultLogger.addException(AuditEvent aEvt, Throwable aThrowable)
          Notify that an exception happened while performing audit.
 void XMLLogger.addException(AuditEvent aEvt, Throwable aThrowable)
          Notify that an exception happened while performing audit.
 void DefaultLogger.auditFinished(AuditEvent aEvt)
          Notify that the audit is finished.
 void XMLLogger.auditFinished(AuditEvent aEvt)
          Notify that the audit is finished.
 void DefaultLogger.auditStarted(AuditEvent aEvt)
          Notify that the audit is about to start.
 void XMLLogger.auditStarted(AuditEvent aEvt)
          Notify that the audit is about to start.
 void DefaultLogger.fileFinished(AuditEvent aEvt)
          Notify that audit is finished on a specific file.
 void XMLLogger.fileFinished(AuditEvent aEvt)
          Notify that audit is finished on a specific file.
 void DefaultLogger.fileStarted(AuditEvent aEvt)
          Notify that audit is about to start on a specific file.
 void XMLLogger.fileStarted(AuditEvent aEvt)
          Notify that audit is about to start on a specific file.
 

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

Methods in com.puppycrawl.tools.checkstyle.api with parameters of type AuditEvent
 boolean Filter.accept(AuditEvent aEvent)
          Determines whether or not a filtered AuditEvent is accepted.
 boolean FilterSet.accept(AuditEvent aEvent)
          Determines whether or not a filtered AuditEvent is accepted.
 void AuditListener.addError(AuditEvent aEvt)
          Notify that an audit error was discovered on a specific file.
 void SeverityLevelCounter.addError(AuditEvent aEvt)
          Notify that an audit error was discovered on a specific file.
 void AuditListener.addException(AuditEvent aEvt, Throwable aThrowable)
          Notify that an exception happened while performing audit.
 void SeverityLevelCounter.addException(AuditEvent aEvt, Throwable aThrowable)
          Notify that an exception happened while performing audit.
 void AuditListener.auditFinished(AuditEvent aEvt)
          Notify that the audit is finished.
 void SeverityLevelCounter.auditFinished(AuditEvent aEvt)
          Notify that the audit is finished.
 void AuditListener.auditStarted(AuditEvent aEvt)
          Notify that the audit is about to start.
 void SeverityLevelCounter.auditStarted(AuditEvent aEvt)
          Notify that the audit is about to start.
 void AuditListener.fileFinished(AuditEvent aEvt)
          Notify that audit is finished on a specific file.
 void SeverityLevelCounter.fileFinished(AuditEvent aEvt)
          Notify that audit is finished on a specific file.
 void AuditListener.fileStarted(AuditEvent aEvt)
          Notify that audit is about to start on a specific file.
 void SeverityLevelCounter.fileStarted(AuditEvent aEvt)
          Notify that audit is about to start on a specific file.
 

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)
          Determines whether or not a filtered AuditEvent is accepted.
 boolean SuppressElement.accept(AuditEvent aEvent)
          Determines whether or not a filtered AuditEvent is accepted.
 boolean SuppressionCommentFilter.accept(AuditEvent aEvent)
          Determines whether or not a filtered AuditEvent is accepted.
 boolean SuppressionFilter.accept(AuditEvent aEvent)
          Determines whether or not a filtered AuditEvent is accepted.
 boolean SuppressionCommentFilter.Tag.isMatch(AuditEvent aEvent)
          Determines whether the source of an audit event matches the text of this tag.
 


Back to the Checkstyle Home Page