Uses of Interface
com.puppycrawl.tools.checkstyle.api.AuditListener

Packages that use AuditListener
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. 
 

Uses of AuditListener in com.puppycrawl.tools.checkstyle
 

Classes in com.puppycrawl.tools.checkstyle that implement AuditListener
 class DefaultLogger
          Simple plain logger for text output.
 class XMLLogger
          Simple XML logger.
 

Methods in com.puppycrawl.tools.checkstyle that return AuditListener
 AuditListener CheckStyleTask.Formatter.createListener(org.apache.tools.ant.Task aTask)
          Creates a listener for the formatter.
protected  AuditListener[] CheckStyleTask.getListeners()
          Return the list of listeners set in this task.
 

Methods in com.puppycrawl.tools.checkstyle with parameters of type AuditListener
 void Checker.addListener(AuditListener aListener)
          Add the listener that will be used to receive events from the audit.
 void Checker.removeListener(AuditListener aListener)
          Removes a given listener.
 

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

Classes in com.puppycrawl.tools.checkstyle.api that implement AuditListener
 class SeverityLevelCounter
          An audit listener that counts how many AuditEvents of a given severity have been generated.
 


Back to the Checkstyle Home Page