Uses of Class
com.puppycrawl.tools.checkstyle.checks.javadoc.HtmlTag
-
Packages that use HtmlTag Package Description com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution. -
-
Uses of HtmlTag in com.puppycrawl.tools.checkstyle.checks.javadoc
Fields in com.puppycrawl.tools.checkstyle.checks.javadoc with type parameters of type HtmlTag Modifier and Type Field Description private java.util.List<HtmlTag>TagParser. tagsList of HtmlTags found on the input line of text.Methods in com.puppycrawl.tools.checkstyle.checks.javadoc that return HtmlTag Modifier and Type Method Description HtmlTagTagParser. nextTag()Returns the next available HtmlTag.Methods in com.puppycrawl.tools.checkstyle.checks.javadoc with parameters of type HtmlTag Modifier and Type Method Description private voidTagParser. add(HtmlTag tag)Performs lazy initialization on the internal tags List and adds the tag.private static booleanJavadocStyleCheck. isAllowedTag(HtmlTag tag)Determines if the HtmlTag is one which is allowed in a javadoc.private static booleanJavadocStyleCheck. isSingleTag(HtmlTag tag)Determines if the HtmlTag is one which does not require a close tag.Method parameters in com.puppycrawl.tools.checkstyle.checks.javadoc with type arguments of type HtmlTag Modifier and Type Method Description private voidJavadocStyleCheck. checkUnclosedTags(java.util.Deque<HtmlTag> htmlStack, java.lang.String token)Checks to see if there are any unclosed tags on the stack.private static booleanJavadocStyleCheck. isExtraHtml(java.lang.String token, java.util.Deque<HtmlTag> htmlStack)Determines if the given token is an extra HTML tag.
-