Class MissingJavadocTypeCheck

  • All Implemented Interfaces:
    Configurable, Contextualizable

    public class MissingJavadocTypeCheck
    extends AbstractCheck

    Checks for missing Javadoc comments for class, enum, interface, and annotation interface definitions. The scope to verify is specified using the Scope class and defaults to Scope.PUBLIC. To verify another scope, set property scope to one of the Scope constants.

    • Property scope - specify the visibility scope where Javadoc comments are checked. Type is com.puppycrawl.tools.checkstyle.api.Scope. Default value is public.
    • Property excludeScope - specify the visibility scope where Javadoc comments are not checked. Type is com.puppycrawl.tools.checkstyle.api.Scope. Default value is null.
    • Property skipAnnotations - specify the list of annotations that allow missed documentation. Only short names are allowed, e.g. Generated. Type is java.lang.String[]. Default value is Generated.
    • Property tokens - tokens to check Type is java.lang.String[]. Validation type is tokenSet. Default value is: INTERFACE_DEF, CLASS_DEF, ENUM_DEF, ANNOTATION_DEF, RECORD_DEF.

    To configure the default check to make sure all public class, enum, interface, and annotation interface, definitions have javadocs:

     <module name="MissingJavadocType"/>
     

    Example:

     public class PublicClass {} // violation
     private class PublicClass {}
     protected class PublicClass {}
     class PackagePrivateClass {}
     

    To configure the check for private scope:

     <module name="MissingJavadocType">
       <property name="scope" value="private"/>
     </module>
     

    Example:

     public class PublicClass {} // violation
     private class PublicClass {} // violation
     protected class PublicClass {} // violation
     class PackagePrivateClass {} // violation
     

    To configure the check for private classes only:

     <module name="MissingJavadocType">
       <property name="scope" value="private"/>
       <property name="excludeScope" value="package"/>
     </module>
     

    Example:

     public class PublicClass {}
     private class PublicClass {} // violation
     protected class PublicClass {}
     class PackagePrivateClass {}
     

    Example that allows missing comments for classes annotated with @SpringBootApplication and @Configuration:

     @SpringBootApplication // no violations about missing comment on class
     public class Application {}
    
     @Configuration // no violations about missing comment on class
     class DatabaseConfiguration {}
     

    Use following configuration:

     <module name="MissingJavadocType">
       <property name="skipAnnotations" value="SpringBootApplication,Configuration"/>
     </module>
     

    Parent is com.puppycrawl.tools.checkstyle.TreeWalker

    Violation Message Keys:

    • javadoc.missing
    Since:
    8.20
    • Field Detail

      • MSG_JAVADOC_MISSING

        public static final java.lang.String MSG_JAVADOC_MISSING
        A key is pointing to the warning message text in "messages.properties" file.
        See Also:
        Constant Field Values
    • Constructor Detail

      • MissingJavadocTypeCheck

        public MissingJavadocTypeCheck()
    • Method Detail

      • setScope

        public void setScope​(Scope scope)
        Setter to specify the visibility scope where Javadoc comments are checked.
        Parameters:
        scope - a scope.
      • setExcludeScope

        public void setExcludeScope​(Scope excludeScope)
        Setter to specify the visibility scope where Javadoc comments are not checked.
        Parameters:
        excludeScope - a scope.
      • setSkipAnnotations

        public void setSkipAnnotations​(java.lang.String... userAnnotations)
        Setter to specify the list of annotations that allow missed documentation. Only short names are allowed, e.g. Generated.
        Parameters:
        userAnnotations - user's value.
      • getDefaultTokens

        public int[] getDefaultTokens()
        Description copied from class: AbstractCheck
        Returns the default token a check is interested in. Only used if the configuration for a check does not define the tokens.
        Specified by:
        getDefaultTokens in class AbstractCheck
        Returns:
        the default tokens
        See Also:
        TokenTypes
      • getAcceptableTokens

        public int[] getAcceptableTokens()
        Description copied from class: AbstractCheck
        The configurable token set. Used to protect Checks against malicious users who specify an unacceptable token set in the configuration file. The default implementation returns the check's default tokens.
        Specified by:
        getAcceptableTokens in class AbstractCheck
        Returns:
        the token set this check is designed for.
        See Also:
        TokenTypes
      • getRequiredTokens

        public int[] getRequiredTokens()
        Description copied from class: AbstractCheck
        The tokens that this check must be registered for.
        Specified by:
        getRequiredTokens in class AbstractCheck
        Returns:
        the token set this must be registered for.
        See Also:
        TokenTypes