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