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

Packages that use FileSetCheck
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.checks Contains the checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.duplicates Duplicate code detection
com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution. 
 

Uses of FileSetCheck in com.puppycrawl.tools.checkstyle
 

Classes in com.puppycrawl.tools.checkstyle that implement FileSetCheck
 class TreeWalker
          Responsible for walking an abstract syntax tree and notifying interested checks at each each node.
 

Methods in com.puppycrawl.tools.checkstyle with parameters of type FileSetCheck
 void Checker.addFileSetCheck(FileSetCheck aFileSetCheck)
          Adds a FileSetCheck to the list of FileSetChecks that is executed in process().
 

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

Classes in com.puppycrawl.tools.checkstyle.api that implement FileSetCheck
 class AbstractFileSetCheck
          Provides common functionality for many FileSetChecks.
 

Uses of FileSetCheck in com.puppycrawl.tools.checkstyle.checks
 

Classes in com.puppycrawl.tools.checkstyle.checks that implement FileSetCheck
 class NewlineAtEndOfFileCheck
           Checks that there is a newline at the end of each file.
 class TranslationCheck
           The TranslationCheck class helps to ensure the correct translation of code by checking property files for consistency regarding their keys.
 

Uses of FileSetCheck in com.puppycrawl.tools.checkstyle.checks.duplicates
 

Classes in com.puppycrawl.tools.checkstyle.checks.duplicates that implement FileSetCheck
 class StrictDuplicateCodeCheck
          Checks for duplicate code.
 

Uses of FileSetCheck in com.puppycrawl.tools.checkstyle.checks.javadoc
 

Classes in com.puppycrawl.tools.checkstyle.checks.javadoc that implement FileSetCheck
 class PackageHtmlCheck
           Checks that all packages have a package documentation.
 


Back to the Checkstyle Home Page