Uses of Class
com.puppycrawl.tools.checkstyle.checks.AbstractFormatCheck

Packages that use AbstractFormatCheck
com.puppycrawl.tools.checkstyle.checks Contains the checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.annotation Contains the Annotation checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.coding Contains the Coding checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.design Contains the Class Design checks that are bundled with the main distribution. 
com.puppycrawl.tools.checkstyle.checks.naming Contains the Naming conventions checks that are bundled with the main distribution. 
 

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

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks
 class RegexpCheck
           A check that makes sure that a specified pattern exists (or not) in the file.
 class TodoCommentCheck
           A check for TODO comments.
 class TrailingCommentCheck
           The check to ensure that requires that comments be the only thing on a line.
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.annotation
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.annotation
 class SuppressWarningsCheck
           This check allows you to specify what warnings that SuppressWarnings is not allowed to suppress.
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.coding
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.coding
 class IllegalTokenTextCheck
           Checks for illegal token text.
 class IllegalTypeCheck
           Checks that particular class are never used as types in variable declarations, return values or parameters.
 class ReturnCountCheck
           Restricts return statements to a specified count (default = 2).
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.design
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.design
 class MutableExceptionCheck
           Ensures that exceptions (defined as any class name conforming to some regular expression) are immutable.
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.naming
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.naming
 class AbstractAccessControlNameCheck
          Abstract class for checking a class member (field/method)'s name conforms to a format specified by the format property.
 class AbstractClassNameCheck
           Ensures that the names of abstract classes conforming to some regular expression and check that abstract modifier exists.
 class AbstractNameCheck
          Abstract class for checking that names conform to a specified format.
 class AbstractTypeParameterNameCheck
           Abstract class for checking if a class/method type parameter's name conforms to a format specified by the format property.
 class ClassTypeParameterNameCheck
           Checks that class type parameter names conform to a format specified by the format property.
 class ConstantNameCheck
           Checks that constant names conform to a format specified by the format property.
 class LocalFinalVariableNameCheck
           Checks that local final variable names conform to a format specified by the format property.
 class LocalVariableNameCheck
           Checks that local, non-final variable names conform to a format specified by the format property.
 class MemberNameCheck
           Checks that instance variable names conform to a format specified by the format property.
 class MethodNameCheck
           Checks that method names conform to a format specified by the format property.
 class MethodTypeParameterNameCheck
           Checks that class type parameter names conform to a format specified by the format property.
 class PackageNameCheck
           Checks that package names conform to a format specified by the format property.
 class ParameterNameCheck
           Checks that parameter names conform to a format specified by the format property.
 class StaticVariableNameCheck
           Checks that static, non-final variable names conform to a format specified by the format property.
 class TypeNameCheck
           Checks that type names conform to a format specified by the format property.
 



Copyright © 2001-2014. All Rights Reserved.