Search in sources :

Example 1 with HtmlTagContext

use of com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext in project checkstyle by checkstyle.

the class ParseTreeBuilder method treeComments.

public static ParseTree treeComments() {
    JavadocContext javadocContext0 = new JavadocContext(null, 0);
    CommonToken leadingAsterisk0 = new CommonToken(JavadocTokenTypes.LEADING_ASTERISK, " *");
    javadocContext0.addChild(leadingAsterisk0);
    TextContext textContext0 = new TextContext(javadocContext0, 0);
    CommonToken ws0 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext0.addChild(ws0);
    CommonToken char0 = new CommonToken(JavadocTokenTypes.CHAR, "U");
    textContext0.addChild(char0);
    CommonToken char1 = new CommonToken(JavadocTokenTypes.CHAR, "s");
    textContext0.addChild(char1);
    CommonToken char2 = new CommonToken(JavadocTokenTypes.CHAR, "e");
    textContext0.addChild(char2);
    CommonToken ws1 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext0.addChild(ws1);
    javadocContext0.addChild(textContext0);
    HtmlCommentContext htmlCommentContext0 = new HtmlCommentContext(javadocContext0, 0);
    CommonToken htmlCommentStart0 = new CommonToken(JavadocTokenTypes.HTML_COMMENT_START, "<!--");
    htmlCommentContext0.addChild(htmlCommentStart0);
    TextContext textContext1 = new TextContext(htmlCommentContext0, 0);
    CommonToken ws2 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext1.addChild(ws2);
    CommonToken char3 = new CommonToken(JavadocTokenTypes.CHAR, "s");
    textContext1.addChild(char3);
    CommonToken char4 = new CommonToken(JavadocTokenTypes.CHAR, "t");
    textContext1.addChild(char4);
    CommonToken char5 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext1.addChild(char5);
    CommonToken char6 = new CommonToken(JavadocTokenTypes.CHAR, "n");
    textContext1.addChild(char6);
    CommonToken char7 = new CommonToken(JavadocTokenTypes.CHAR, "d");
    textContext1.addChild(char7);
    CommonToken char8 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext1.addChild(char8);
    CommonToken char9 = new CommonToken(JavadocTokenTypes.CHAR, "r");
    textContext1.addChild(char9);
    CommonToken char10 = new CommonToken(JavadocTokenTypes.CHAR, "d");
    textContext1.addChild(char10);
    htmlCommentContext0.addChild(textContext1);
    CommonToken newline0 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    htmlCommentContext0.addChild(newline0);
    CommonToken leadingAsterisk1 = new CommonToken(JavadocTokenTypes.LEADING_ASTERISK, " *");
    htmlCommentContext0.addChild(leadingAsterisk1);
    TextContext textContext2 = new TextContext(htmlCommentContext0, 0);
    CommonToken ws3 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext2.addChild(ws3);
    CommonToken char11 = new CommonToken(JavadocTokenTypes.CHAR, "j");
    textContext2.addChild(char11);
    CommonToken char12 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext2.addChild(char12);
    CommonToken char13 = new CommonToken(JavadocTokenTypes.CHAR, "v");
    textContext2.addChild(char13);
    CommonToken char14 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext2.addChild(char14);
    CommonToken ws4 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext2.addChild(ws4);
    CommonToken char15 = new CommonToken(JavadocTokenTypes.CHAR, "t");
    textContext2.addChild(char15);
    CommonToken char16 = new CommonToken(JavadocTokenTypes.CHAR, "y");
    textContext2.addChild(char16);
    CommonToken char17 = new CommonToken(JavadocTokenTypes.CHAR, "p");
    textContext2.addChild(char17);
    CommonToken char18 = new CommonToken(JavadocTokenTypes.CHAR, "e");
    textContext2.addChild(char18);
    CommonToken ws5 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext2.addChild(ws5);
    htmlCommentContext0.addChild(textContext2);
    CommonToken htmlCommentEnd0 = new CommonToken(JavadocTokenTypes.HTML_COMMENT_END, "-->");
    htmlCommentContext0.addChild(htmlCommentEnd0);
    javadocContext0.addChild(htmlCommentContext0);
    TextContext textContext3 = new TextContext(javadocContext0, 0);
    CommonToken ws6 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext3.addChild(ws6);
    javadocContext0.addChild(textContext3);
    HtmlElementContext htmlElementContext0 = new HtmlElementContext(javadocContext0, 0);
    HtmlTagContext htmlTagContext0 = new HtmlTagContext(htmlElementContext0, 0);
    HtmlElementOpenContext htmlElementOpenContext0 = new HtmlElementOpenContext(htmlTagContext0, 0);
    CommonToken open0 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementOpenContext0.addChild(open0);
    CommonToken htmlTagName0 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "b");
    htmlElementOpenContext0.addChild(htmlTagName0);
    CommonToken close0 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementOpenContext0.addChild(close0);
    htmlTagContext0.addChild(htmlElementOpenContext0);
    TextContext textContext4 = new TextContext(htmlTagContext0, 0);
    CommonToken char19 = new CommonToken(JavadocTokenTypes.CHAR, "S");
    textContext4.addChild(char19);
    CommonToken char20 = new CommonToken(JavadocTokenTypes.CHAR, "t");
    textContext4.addChild(char20);
    CommonToken char21 = new CommonToken(JavadocTokenTypes.CHAR, "r");
    textContext4.addChild(char21);
    CommonToken char22 = new CommonToken(JavadocTokenTypes.CHAR, "i");
    textContext4.addChild(char22);
    CommonToken char23 = new CommonToken(JavadocTokenTypes.CHAR, "n");
    textContext4.addChild(char23);
    CommonToken char24 = new CommonToken(JavadocTokenTypes.CHAR, "g");
    textContext4.addChild(char24);
    htmlTagContext0.addChild(textContext4);
    HtmlElementCloseContext htmlElementCloseContext0 = new HtmlElementCloseContext(htmlTagContext0, 0);
    CommonToken open1 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementCloseContext0.addChild(open1);
    CommonToken slash0 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    htmlElementCloseContext0.addChild(slash0);
    CommonToken htmlTagName1 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "b");
    htmlElementCloseContext0.addChild(htmlTagName1);
    CommonToken close1 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementCloseContext0.addChild(close1);
    htmlTagContext0.addChild(htmlElementCloseContext0);
    htmlElementContext0.addChild(htmlTagContext0);
    javadocContext0.addChild(htmlElementContext0);
    CommonToken eof0 = new CommonToken(JavadocTokenTypes.EOF, "<EOF>");
    javadocContext0.addChild(eof0);
    return javadocContext0;
}
Also used : TextContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TextContext) HtmlElementContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementContext) JavadocContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocContext) HtmlElementCloseContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementCloseContext) CommonToken(org.antlr.v4.runtime.CommonToken) HtmlCommentContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlCommentContext) HtmlTagContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext) HtmlElementOpenContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementOpenContext)

Example 2 with HtmlTagContext

use of com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext in project checkstyle by checkstyle.

the class ParseTreeBuilder method treeAuthorWithMailto.

public static ParseTree treeAuthorWithMailto() {
    JavadocContext javadocContext0 = new JavadocContext(null, 0);
    JavadocTagContext javadocTagContext0 = new JavadocTagContext(javadocContext0, 0);
    CommonToken authorLiteral0 = new CommonToken(JavadocTokenTypes.AUTHOR_LITERAL, "@author");
    javadocTagContext0.addChild(authorLiteral0);
    CommonToken ws0 = new CommonToken(JavadocTokenTypes.WS, " ");
    javadocTagContext0.addChild(ws0);
    DescriptionContext descriptionContext0 = new DescriptionContext(javadocTagContext0, 0);
    HtmlElementContext htmlElementContext0 = new HtmlElementContext(descriptionContext0, 0);
    HtmlTagContext htmlTagContext0 = new HtmlTagContext(htmlElementContext0, 0);
    HtmlElementOpenContext htmlElementOpenContext0 = new HtmlElementOpenContext(htmlTagContext0, 0);
    CommonToken open0 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementOpenContext0.addChild(open0);
    CommonToken htmlTagName0 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "a");
    htmlElementOpenContext0.addChild(htmlTagName0);
    CommonToken ws1 = new CommonToken(JavadocTokenTypes.WS, " ");
    htmlElementOpenContext0.addChild(ws1);
    AttributeContext attributeContext0 = new AttributeContext(htmlElementOpenContext0, 0);
    CommonToken htmlTagName1 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "href");
    attributeContext0.addChild(htmlTagName1);
    CommonToken equals0 = new CommonToken(JavadocTokenTypes.EQUALS, "=");
    attributeContext0.addChild(equals0);
    CommonToken attrValue0 = new CommonToken(JavadocTokenTypes.ATTR_VALUE, "\"mailto:barataliba@gmail.com\"");
    attributeContext0.addChild(attrValue0);
    htmlElementOpenContext0.addChild(attributeContext0);
    CommonToken close0 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementOpenContext0.addChild(close0);
    htmlTagContext0.addChild(htmlElementOpenContext0);
    TextContext textContext0 = new TextContext(htmlTagContext0, 0);
    CommonToken char0 = new CommonToken(JavadocTokenTypes.CHAR, "B");
    textContext0.addChild(char0);
    CommonToken char1 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext0.addChild(char1);
    CommonToken char2 = new CommonToken(JavadocTokenTypes.CHAR, "r");
    textContext0.addChild(char2);
    CommonToken char3 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext0.addChild(char3);
    CommonToken char4 = new CommonToken(JavadocTokenTypes.CHAR, "t");
    textContext0.addChild(char4);
    CommonToken char5 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext0.addChild(char5);
    CommonToken char6 = new CommonToken(JavadocTokenTypes.CHAR, "l");
    textContext0.addChild(char6);
    CommonToken char7 = new CommonToken(JavadocTokenTypes.CHAR, "i");
    textContext0.addChild(char7);
    CommonToken ws2 = new CommonToken(JavadocTokenTypes.WS, " ");
    textContext0.addChild(ws2);
    CommonToken char8 = new CommonToken(JavadocTokenTypes.CHAR, "I");
    textContext0.addChild(char8);
    CommonToken char9 = new CommonToken(JavadocTokenTypes.CHAR, "z");
    textContext0.addChild(char9);
    CommonToken char10 = new CommonToken(JavadocTokenTypes.CHAR, "m");
    textContext0.addChild(char10);
    CommonToken char11 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext0.addChild(char11);
    CommonToken char12 = new CommonToken(JavadocTokenTypes.CHAR, "i");
    textContext0.addChild(char12);
    CommonToken char13 = new CommonToken(JavadocTokenTypes.CHAR, "l");
    textContext0.addChild(char13);
    CommonToken char14 = new CommonToken(JavadocTokenTypes.CHAR, "o");
    textContext0.addChild(char14);
    CommonToken char15 = new CommonToken(JavadocTokenTypes.CHAR, "v");
    textContext0.addChild(char15);
    htmlTagContext0.addChild(textContext0);
    HtmlElementCloseContext htmlElementCloseContext0 = new HtmlElementCloseContext(htmlTagContext0, 0);
    CommonToken open1 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementCloseContext0.addChild(open1);
    CommonToken slash0 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    htmlElementCloseContext0.addChild(slash0);
    CommonToken htmlTagName2 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "a");
    htmlElementCloseContext0.addChild(htmlTagName2);
    CommonToken close1 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementCloseContext0.addChild(close1);
    htmlTagContext0.addChild(htmlElementCloseContext0);
    htmlElementContext0.addChild(htmlTagContext0);
    descriptionContext0.addChild(htmlElementContext0);
    javadocTagContext0.addChild(descriptionContext0);
    javadocContext0.addChild(javadocTagContext0);
    CommonToken eof0 = new CommonToken(JavadocTokenTypes.EOF, "<EOF>");
    javadocContext0.addChild(eof0);
    return javadocContext0;
}
Also used : TextContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TextContext) AttributeContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.AttributeContext) HtmlElementContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementContext) JavadocContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocContext) HtmlElementCloseContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementCloseContext) JavadocTagContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocTagContext) CommonToken(org.antlr.v4.runtime.CommonToken) HtmlTagContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext) DescriptionContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.DescriptionContext) HtmlElementOpenContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementOpenContext)

Example 3 with HtmlTagContext

use of com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext in project checkstyle by checkstyle.

the class ParseTreeBuilder method treeOneSimpleHtmlTag.

public static ParseTree treeOneSimpleHtmlTag() {
    JavadocContext javadocContext0 = new JavadocContext(null, 0);
    HtmlElementContext htmlElementContext0 = new HtmlElementContext(javadocContext0, 0);
    HtmlTagContext htmlTagContext0 = new HtmlTagContext(htmlElementContext0, 0);
    HtmlElementOpenContext htmlElementOpenContext0 = new HtmlElementOpenContext(htmlTagContext0, 0);
    CommonToken open0 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementOpenContext0.addChild(open0);
    CommonToken htmlTagName0 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "g");
    htmlElementOpenContext0.addChild(htmlTagName0);
    CommonToken close0 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementOpenContext0.addChild(close0);
    htmlTagContext0.addChild(htmlElementOpenContext0);
    TextContext textContext0 = new TextContext(htmlTagContext0, 0);
    CommonToken char0 = new CommonToken(JavadocTokenTypes.CHAR, "b");
    textContext0.addChild(char0);
    CommonToken char1 = new CommonToken(JavadocTokenTypes.CHAR, "l");
    textContext0.addChild(char1);
    CommonToken char2 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext0.addChild(char2);
    CommonToken char3 = new CommonToken(JavadocTokenTypes.CHAR, "b");
    textContext0.addChild(char3);
    CommonToken char4 = new CommonToken(JavadocTokenTypes.CHAR, "l");
    textContext0.addChild(char4);
    CommonToken char5 = new CommonToken(JavadocTokenTypes.CHAR, "a");
    textContext0.addChild(char5);
    htmlTagContext0.addChild(textContext0);
    HtmlElementCloseContext htmlElementCloseContext0 = new HtmlElementCloseContext(htmlTagContext0, 0);
    CommonToken open1 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementCloseContext0.addChild(open1);
    CommonToken slash0 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    htmlElementCloseContext0.addChild(slash0);
    CommonToken htmlTagName1 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "g");
    htmlElementCloseContext0.addChild(htmlTagName1);
    CommonToken close1 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementCloseContext0.addChild(close1);
    htmlTagContext0.addChild(htmlElementCloseContext0);
    htmlElementContext0.addChild(htmlTagContext0);
    javadocContext0.addChild(htmlElementContext0);
    CommonToken eof0 = new CommonToken(JavadocTokenTypes.EOF, "<EOF>");
    javadocContext0.addChild(eof0);
    return javadocContext0;
}
Also used : TextContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TextContext) HtmlElementContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementContext) JavadocContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocContext) HtmlElementCloseContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementCloseContext) CommonToken(org.antlr.v4.runtime.CommonToken) HtmlTagContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext) HtmlElementOpenContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementOpenContext)

Example 4 with HtmlTagContext

use of com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext in project checkstyle by checkstyle.

the class ParseTreeBuilder method treeNegativeNumberInAttribute.

public static ParseTree treeNegativeNumberInAttribute() {
    JavadocContext javadocContext0 = new JavadocContext(null, 0);
    HtmlElementContext htmlElementContext0 = new HtmlElementContext(javadocContext0, 0);
    HtmlTagContext htmlTagContext0 = new HtmlTagContext(htmlElementContext0, 0);
    HtmlElementOpenContext htmlElementOpenContext0 = new HtmlElementOpenContext(htmlTagContext0, 0);
    CommonToken open0 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementOpenContext0.addChild(open0);
    CommonToken htmlTagName0 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "font");
    htmlElementOpenContext0.addChild(htmlTagName0);
    CommonToken ws0 = new CommonToken(JavadocTokenTypes.WS, " ");
    htmlElementOpenContext0.addChild(ws0);
    AttributeContext attributeContext0 = new AttributeContext(htmlElementOpenContext0, 0);
    CommonToken htmlTagName1 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "size");
    attributeContext0.addChild(htmlTagName1);
    CommonToken equals0 = new CommonToken(JavadocTokenTypes.EQUALS, "=");
    attributeContext0.addChild(equals0);
    CommonToken attrValue0 = new CommonToken(JavadocTokenTypes.ATTR_VALUE, "-2");
    attributeContext0.addChild(attrValue0);
    htmlElementOpenContext0.addChild(attributeContext0);
    CommonToken close0 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementOpenContext0.addChild(close0);
    htmlTagContext0.addChild(htmlElementOpenContext0);
    TextContext textContext0 = new TextContext(htmlTagContext0, 0);
    CommonToken char0 = new CommonToken(JavadocTokenTypes.CHAR, "T");
    textContext0.addChild(char0);
    CommonToken char1 = new CommonToken(JavadocTokenTypes.CHAR, "M");
    textContext0.addChild(char1);
    htmlTagContext0.addChild(textContext0);
    HtmlElementCloseContext htmlElementCloseContext0 = new HtmlElementCloseContext(htmlTagContext0, 0);
    CommonToken open1 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementCloseContext0.addChild(open1);
    CommonToken slash0 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    htmlElementCloseContext0.addChild(slash0);
    CommonToken htmlTagName2 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "font");
    htmlElementCloseContext0.addChild(htmlTagName2);
    CommonToken close1 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementCloseContext0.addChild(close1);
    htmlTagContext0.addChild(htmlElementCloseContext0);
    htmlElementContext0.addChild(htmlTagContext0);
    javadocContext0.addChild(htmlElementContext0);
    CommonToken eof0 = new CommonToken(JavadocTokenTypes.EOF, "<EOF>");
    javadocContext0.addChild(eof0);
    return javadocContext0;
}
Also used : TextContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TextContext) AttributeContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.AttributeContext) HtmlElementContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementContext) JavadocContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocContext) HtmlElementCloseContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementCloseContext) CommonToken(org.antlr.v4.runtime.CommonToken) HtmlTagContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext) HtmlElementOpenContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementOpenContext)

Example 5 with HtmlTagContext

use of com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext in project checkstyle by checkstyle.

the class ParseTreeBuilder method treeMixedCaseOfHtmlTags.

public static ParseTree treeMixedCaseOfHtmlTags() {
    JavadocContext javadocContext0 = new JavadocContext(null, 0);
    HtmlElementContext htmlElementContext0 = new HtmlElementContext(javadocContext0, 0);
    PTagOpenContext pTagOpenContext0 = new PTagOpenContext(htmlElementContext0, 0);
    CommonToken open0 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    pTagOpenContext0.addChild(open0);
    CommonToken pHtmlTagName0 = new CommonToken(JavadocTokenTypes.P_HTML_TAG_NAME, "P");
    pTagOpenContext0.addChild(pHtmlTagName0);
    CommonToken close0 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    pTagOpenContext0.addChild(close0);
    htmlElementContext0.addChild(pTagOpenContext0);
    javadocContext0.addChild(htmlElementContext0);
    CommonToken newline0 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    javadocContext0.addChild(newline0);
    HtmlElementContext htmlElementContext1 = new HtmlElementContext(javadocContext0, 0);
    SingletonElementContext singletonElementContext0 = new SingletonElementContext(htmlElementContext1, 0);
    BrTagContext brTagContext0 = new BrTagContext(singletonElementContext0, 0);
    CommonToken open1 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    brTagContext0.addChild(open1);
    CommonToken brHtmlTagName0 = new CommonToken(JavadocTokenTypes.BR_HTML_TAG_NAME, "br");
    brTagContext0.addChild(brHtmlTagName0);
    CommonToken close1 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    brTagContext0.addChild(close1);
    singletonElementContext0.addChild(brTagContext0);
    htmlElementContext1.addChild(singletonElementContext0);
    javadocContext0.addChild(htmlElementContext1);
    CommonToken newline1 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    javadocContext0.addChild(newline1);
    HtmlElementContext htmlElementContext2 = new HtmlElementContext(javadocContext0, 0);
    SingletonElementContext singletonElementContext1 = new SingletonElementContext(htmlElementContext2, 0);
    BrTagContext brTagContext1 = new BrTagContext(singletonElementContext1, 0);
    CommonToken open2 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    brTagContext1.addChild(open2);
    CommonToken brHtmlTagName1 = new CommonToken(JavadocTokenTypes.BR_HTML_TAG_NAME, "br");
    brTagContext1.addChild(brHtmlTagName1);
    CommonToken slashClose0 = new CommonToken(JavadocTokenTypes.SLASH_CLOSE, "/>");
    brTagContext1.addChild(slashClose0);
    singletonElementContext1.addChild(brTagContext1);
    htmlElementContext2.addChild(singletonElementContext1);
    javadocContext0.addChild(htmlElementContext2);
    CommonToken newline2 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    javadocContext0.addChild(newline2);
    HtmlElementContext htmlElementContext3 = new HtmlElementContext(javadocContext0, 0);
    SingletonElementContext singletonElementContext2 = new SingletonElementContext(htmlElementContext3, 0);
    BrTagContext brTagContext2 = new BrTagContext(singletonElementContext2, 0);
    CommonToken open3 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    brTagContext2.addChild(open3);
    CommonToken brHtmlTagName2 = new CommonToken(JavadocTokenTypes.BR_HTML_TAG_NAME, "BR");
    brTagContext2.addChild(brHtmlTagName2);
    CommonToken close2 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    brTagContext2.addChild(close2);
    singletonElementContext2.addChild(brTagContext2);
    htmlElementContext3.addChild(singletonElementContext2);
    javadocContext0.addChild(htmlElementContext3);
    CommonToken newline3 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    javadocContext0.addChild(newline3);
    HtmlElementContext htmlElementContext4 = new HtmlElementContext(javadocContext0, 0);
    SingletonElementContext singletonElementContext3 = new SingletonElementContext(htmlElementContext4, 0);
    BrTagContext brTagContext3 = new BrTagContext(singletonElementContext3, 0);
    CommonToken open4 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    brTagContext3.addChild(open4);
    CommonToken brHtmlTagName3 = new CommonToken(JavadocTokenTypes.BR_HTML_TAG_NAME, "BR");
    brTagContext3.addChild(brHtmlTagName3);
    CommonToken slashClose1 = new CommonToken(JavadocTokenTypes.SLASH_CLOSE, "/>");
    brTagContext3.addChild(slashClose1);
    singletonElementContext3.addChild(brTagContext3);
    htmlElementContext4.addChild(singletonElementContext3);
    javadocContext0.addChild(htmlElementContext4);
    CommonToken newline4 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    javadocContext0.addChild(newline4);
    HtmlElementContext htmlElementContext5 = new HtmlElementContext(javadocContext0, 0);
    HtmlTagContext htmlTagContext0 = new HtmlTagContext(htmlElementContext5, 0);
    HtmlElementOpenContext htmlElementOpenContext0 = new HtmlElementOpenContext(htmlTagContext0, 0);
    CommonToken open5 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementOpenContext0.addChild(open5);
    CommonToken htmlTagName0 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "TABLE");
    htmlElementOpenContext0.addChild(htmlTagName0);
    CommonToken close3 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementOpenContext0.addChild(close3);
    htmlTagContext0.addChild(htmlElementOpenContext0);
    CommonToken newline5 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    htmlTagContext0.addChild(newline5);
    TextContext textContext0 = new TextContext(htmlTagContext0, 0);
    CommonToken ws0 = new CommonToken(JavadocTokenTypes.WS, "\t");
    textContext0.addChild(ws0);
    htmlTagContext0.addChild(textContext0);
    HtmlElementContext htmlElementContext6 = new HtmlElementContext(htmlTagContext0, 0);
    TrContext trContext0 = new TrContext(htmlElementContext6, 0);
    TrTagOpenContext trTagOpenContext0 = new TrTagOpenContext(trContext0, 0);
    CommonToken open6 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    trTagOpenContext0.addChild(open6);
    CommonToken trHtmlTagName0 = new CommonToken(JavadocTokenTypes.TR_HTML_TAG_NAME, "tr");
    trTagOpenContext0.addChild(trHtmlTagName0);
    CommonToken close4 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    trTagOpenContext0.addChild(close4);
    trContext0.addChild(trTagOpenContext0);
    TrTagCloseContext trTagCloseContext0 = new TrTagCloseContext(trContext0, 0);
    CommonToken open7 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    trTagCloseContext0.addChild(open7);
    CommonToken slash0 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    trTagCloseContext0.addChild(slash0);
    CommonToken trHtmlTagName1 = new CommonToken(JavadocTokenTypes.TR_HTML_TAG_NAME, "TR");
    trTagCloseContext0.addChild(trHtmlTagName1);
    CommonToken close5 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    trTagCloseContext0.addChild(close5);
    trContext0.addChild(trTagCloseContext0);
    htmlElementContext6.addChild(trContext0);
    htmlTagContext0.addChild(htmlElementContext6);
    CommonToken newline6 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    htmlTagContext0.addChild(newline6);
    TextContext textContext1 = new TextContext(htmlTagContext0, 0);
    CommonToken ws1 = new CommonToken(JavadocTokenTypes.WS, "\t");
    textContext1.addChild(ws1);
    htmlTagContext0.addChild(textContext1);
    HtmlElementContext htmlElementContext7 = new HtmlElementContext(htmlTagContext0, 0);
    TrContext trContext1 = new TrContext(htmlElementContext7, 0);
    TrTagOpenContext trTagOpenContext1 = new TrTagOpenContext(trContext1, 0);
    CommonToken open8 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    trTagOpenContext1.addChild(open8);
    CommonToken trHtmlTagName2 = new CommonToken(JavadocTokenTypes.TR_HTML_TAG_NAME, "TR");
    trTagOpenContext1.addChild(trHtmlTagName2);
    CommonToken close6 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    trTagOpenContext1.addChild(close6);
    trContext1.addChild(trTagOpenContext1);
    TrTagCloseContext trTagCloseContext1 = new TrTagCloseContext(trContext1, 0);
    CommonToken open9 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    trTagCloseContext1.addChild(open9);
    CommonToken slash1 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    trTagCloseContext1.addChild(slash1);
    CommonToken trHtmlTagName3 = new CommonToken(JavadocTokenTypes.TR_HTML_TAG_NAME, "tr");
    trTagCloseContext1.addChild(trHtmlTagName3);
    CommonToken close7 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    trTagCloseContext1.addChild(close7);
    trContext1.addChild(trTagCloseContext1);
    htmlElementContext7.addChild(trContext1);
    htmlTagContext0.addChild(htmlElementContext7);
    CommonToken newline7 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    htmlTagContext0.addChild(newline7);
    HtmlElementCloseContext htmlElementCloseContext0 = new HtmlElementCloseContext(htmlTagContext0, 0);
    CommonToken open10 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    htmlElementCloseContext0.addChild(open10);
    CommonToken slash2 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    htmlElementCloseContext0.addChild(slash2);
    CommonToken htmlTagName1 = new CommonToken(JavadocTokenTypes.HTML_TAG_NAME, "table");
    htmlElementCloseContext0.addChild(htmlTagName1);
    CommonToken close8 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    htmlElementCloseContext0.addChild(close8);
    htmlTagContext0.addChild(htmlElementCloseContext0);
    htmlElementContext5.addChild(htmlTagContext0);
    javadocContext0.addChild(htmlElementContext5);
    CommonToken newline8 = new CommonToken(JavadocTokenTypes.NEWLINE, LINE_SEPARATOR);
    javadocContext0.addChild(newline8);
    HtmlElementContext htmlElementContext8 = new HtmlElementContext(javadocContext0, 0);
    PTagCloseContext pTagCloseContext0 = new PTagCloseContext(htmlElementContext8, 0);
    CommonToken open11 = new CommonToken(JavadocTokenTypes.OPEN, "<");
    pTagCloseContext0.addChild(open11);
    CommonToken slash3 = new CommonToken(JavadocTokenTypes.SLASH, "/");
    pTagCloseContext0.addChild(slash3);
    CommonToken pHtmlTagName1 = new CommonToken(JavadocTokenTypes.P_HTML_TAG_NAME, "p");
    pTagCloseContext0.addChild(pHtmlTagName1);
    CommonToken close9 = new CommonToken(JavadocTokenTypes.CLOSE, ">");
    pTagCloseContext0.addChild(close9);
    htmlElementContext8.addChild(pTagCloseContext0);
    javadocContext0.addChild(htmlElementContext8);
    CommonToken eof0 = new CommonToken(JavadocTokenTypes.EOF, "<EOF>");
    javadocContext0.addChild(eof0);
    return javadocContext0;
}
Also used : PTagOpenContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.PTagOpenContext) PTagCloseContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.PTagCloseContext) HtmlTagContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext) SingletonElementContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.SingletonElementContext) HtmlElementOpenContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementOpenContext) BrTagContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.BrTagContext) TextContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TextContext) HtmlElementContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementContext) TrTagCloseContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TrTagCloseContext) JavadocContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocContext) TrTagOpenContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TrTagOpenContext) HtmlElementCloseContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementCloseContext) TrContext(com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TrContext) CommonToken(org.antlr.v4.runtime.CommonToken)

Aggregations

HtmlElementCloseContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementCloseContext)9 HtmlElementContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementContext)9 HtmlElementOpenContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlElementOpenContext)9 HtmlTagContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlTagContext)9 JavadocContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocContext)9 TextContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.TextContext)9 CommonToken (org.antlr.v4.runtime.CommonToken)9 AttributeContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.AttributeContext)4 PTagOpenContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.PTagOpenContext)3 DescriptionContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.DescriptionContext)2 JavadocTagContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.JavadocTagContext)2 PTagCloseContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.PTagCloseContext)2 BrTagContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.BrTagContext)1 HtmlCommentContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.HtmlCommentContext)1 LiContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.LiContext)1 LiTagCloseContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.LiTagCloseContext)1 LiTagOpenContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.LiTagOpenContext)1 ParagraphContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.ParagraphContext)1 ParametersContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.ParametersContext)1 ReferenceContext (com.puppycrawl.tools.checkstyle.grammars.javadoc.JavadocParser.ReferenceContext)1