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

Packages that use AbstractFileSetCheck
com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework. 
com.puppycrawl.tools.checkstyle.checks Contains the checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.duplicates Duplicate code detection tools. 
com.puppycrawl.tools.checkstyle.checks.header File Header checks. 
com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution. 
 

Uses of AbstractFileSetCheck in com.puppycrawl.tools.checkstyle
 

Subclasses of AbstractFileSetCheck in com.puppycrawl.tools.checkstyle
 class TreeWalker
          Responsible for walking an abstract syntax tree and notifying interested checks at each each node.
 

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

Subclasses of AbstractFileSetCheck in com.puppycrawl.tools.checkstyle.checks
 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 AbstractFileSetCheck in com.puppycrawl.tools.checkstyle.checks.duplicates
 

Subclasses of AbstractFileSetCheck in com.puppycrawl.tools.checkstyle.checks.duplicates
 class StrictDuplicateCodeCheck
          Performs a line-by-line comparison of all code lines and reports duplicate code if a sequence of lines differs only in indentation.
 

Uses of AbstractFileSetCheck in com.puppycrawl.tools.checkstyle.checks.header
 

Subclasses of AbstractFileSetCheck in com.puppycrawl.tools.checkstyle.checks.header
 class CrossLanguageRegexpHeaderCheck
          A FileSetCheck similar to RegexpHeaderCheck, but works for all text files, not just java code.
 

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

Subclasses of AbstractFileSetCheck in com.puppycrawl.tools.checkstyle.checks.javadoc
 class PackageHtmlCheck
          Checks that all packages have a package documentation.
 


Back to the Checkstyle Home Page