Uses of Class
com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTag
-
Packages that use JavadocTag Package Description com.puppycrawl.tools.checkstyle.checks.imports Contains the Imports checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.utils Contains utils classes for checkstyle. -
-
Uses of JavadocTag in com.puppycrawl.tools.checkstyle.checks.imports
Methods in com.puppycrawl.tools.checkstyle.checks.imports that return types with arguments of type JavadocTag Modifier and Type Method Description private static java.util.List<JavadocTag>UnusedImportsCheck. getValidTags(TextBlock cmt, JavadocUtils.JavadocTagType tagType)Returns the list of valid tags found in a javadocTextBlock.Methods in com.puppycrawl.tools.checkstyle.checks.imports with parameters of type JavadocTag Modifier and Type Method Description private static java.util.Set<java.lang.String>UnusedImportsCheck. processJavadocTag(JavadocTag tag)Returns a list of references found in a javadocJavadocTag. -
Uses of JavadocTag in com.puppycrawl.tools.checkstyle.checks.javadoc
Fields in com.puppycrawl.tools.checkstyle.checks.javadoc with type parameters of type JavadocTag Modifier and Type Field Description private java.util.List<JavadocTag>JavadocTags. validTagsValid validTags.Methods in com.puppycrawl.tools.checkstyle.checks.javadoc that return types with arguments of type JavadocTag Modifier and Type Method Description private java.util.List<JavadocTag>JavadocTypeCheck. getJavadocTags(TextBlock textBlock)Gets all standalone tags from a given javadoc.private static java.util.List<JavadocTag>JavadocMethodCheck. getMethodTags(TextBlock comment)Returns the tags in a javadoc comment.private static java.util.List<JavadocTag>JavadocMethodCheck. getMultilineArgTags(java.util.regex.Matcher argMultilineStart, int column, java.lang.String[] lines, int lineIndex, int tagLine)Gets multiline Javadoc tags with arguments.private static java.util.List<JavadocTag>JavadocMethodCheck. getMultilineNoArgTags(java.util.regex.Matcher noargMultilineStart, java.lang.String[] lines, int lineIndex, int tagLine)Gets multiline Javadoc tags with no arguments.java.util.List<JavadocTag>JavadocTags. getValidTags()Getter for validTags field.Methods in com.puppycrawl.tools.checkstyle.checks.javadoc with parameters of type JavadocTag Modifier and Type Method Description private static java.lang.StringJavadocTypeCheck. extractTypeParamNameFromTag(JavadocTag tag)Extracts type parameter name from tag.Method parameters in com.puppycrawl.tools.checkstyle.checks.javadoc with type arguments of type JavadocTag Modifier and Type Method Description private voidJavadocMethodCheck. checkParamTags(java.util.List<JavadocTag> tags, DetailAST parent, boolean reportExpectedTags)Checks a set of tags for matching parameters.private voidJavadocMethodCheck. checkReturnTag(java.util.List<JavadocTag> tags, int lineNo, boolean reportExpectedTags)Checks for only one return tag.private voidJavadocTypeCheck. checkTag(int lineNo, java.util.List<JavadocTag> tags, java.lang.String tagName, java.util.regex.Pattern formatPattern)Verifies that a type definition has a required tag.private voidJavadocMethodCheck. checkThrowsTags(java.util.List<JavadocTag> tags, java.util.List<JavadocMethodCheck.ExceptionInfo> throwsList, boolean reportExpectedTags)Checks a set of tags for matching throws.private voidJavadocTypeCheck. checkTypeParamTag(int lineNo, java.util.List<JavadocTag> tags, java.lang.String typeParamName)Verifies that a type definition has the specified param tag for the specified type parameter name.private voidJavadocTypeCheck. checkUnusedTypeParamTags(java.util.List<JavadocTag> tags, java.util.List<java.lang.String> typeParamNames)Checks for unused param tags for type parameters.private booleanJavadocMethodCheck. hasShortCircuitTag(DetailAST ast, java.util.List<JavadocTag> tags)Validates whether the Javadoc has a short circuit tag.Constructor parameters in com.puppycrawl.tools.checkstyle.checks.javadoc with type arguments of type JavadocTag Constructor Description JavadocTags(java.util.List<JavadocTag> tags, java.util.List<InvalidJavadocTag> invalidTags)Creates an instance. -
Uses of JavadocTag in com.puppycrawl.tools.checkstyle.utils
Method parameters in com.puppycrawl.tools.checkstyle.utils with type arguments of type JavadocTag Modifier and Type Method Description private static voidJavadocUtils. lookForInlineTags(TextBlock comment, int lineNumber, java.util.List<JavadocTag> validTags, java.util.List<InvalidJavadocTag> invalidTags)Looks for inline tags in comment and adds them to the proper tags collection.
-