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

Packages that use Contextualizable
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 Contextualizable in com.puppycrawl.tools.checkstyle
 

Classes in com.puppycrawl.tools.checkstyle that implement Contextualizable
 class Checker
          This class provides the functionality to check a set of files.
 class DefaultLogger
          Simple plain logger for text output.
 class TreeWalker
          Responsible for walking an abstract syntax tree and notifying interested checks at each each node.
 class XMLLogger
          Simple XML logger.
 

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

Subinterfaces of Contextualizable in com.puppycrawl.tools.checkstyle.api
 interface FileSetCheck
          Interface for Checking a set of files for some criteria.
 

Classes in com.puppycrawl.tools.checkstyle.api that implement Contextualizable
 class AbstractFileSetCheck
          Provides common functionality for many FileSetChecks.
 class AbstractViolationReporter
          Serves as an abstract base class for all modules that report inspection findings.
 class AutomaticBean
          A Java Bean that implements the component lifecycle interfaces by calling the bean's setters for all configration attributes.
 class Check
          The base class for checks.
 

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

Classes in com.puppycrawl.tools.checkstyle.filters that implement Contextualizable
 class SeverityMatchFilter
          This is a very simple filter based on severity matching.
 class SuppressionCommentFilter
           A filter that uses comments to suppress audit events.
 class SuppressionFilter
           This filter accepts AuditEvents according to file, check, line, and column, as specified in a suppression file.
 


Back to the Checkstyle Home Page