Class JavadocParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- com.puppycrawl.tools.checkstyle.grammar.javadoc.JavadocParserBaseVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
JavadocParserVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
public class JavadocParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements JavadocParserVisitor<T>
This class provides an empty implementation ofJavadocParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description JavadocParserBaseVisitor()
-
Method Summary
-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
visitJavadoc
public T visitJavadoc(JavadocParser.JavadocContext ctx)
Visit a parse tree produced byJavadocParser.javadoc().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJavadocin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlElement
public T visitHtmlElement(JavadocParser.HtmlElementContext ctx)
Visit a parse tree produced byJavadocParser.htmlElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlElementin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlElementStart
public T visitHtmlElementStart(JavadocParser.HtmlElementStartContext ctx)
Visit a parse tree produced byJavadocParser.htmlElementStart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlElementStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlElementEnd
public T visitHtmlElementEnd(JavadocParser.HtmlElementEndContext ctx)
Visit a parse tree produced byJavadocParser.htmlElementEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlElementEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttribute
public T visitAttribute(JavadocParser.AttributeContext ctx)
Visit a parse tree produced byJavadocParser.attribute().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAttributein interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlTag
public T visitHtmlTag(JavadocParser.HtmlTagContext ctx)
Visit a parse tree produced byJavadocParser.htmlTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPTagStart
public T visitPTagStart(JavadocParser.PTagStartContext ctx)
Visit a parse tree produced byJavadocParser.pTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPTagEnd
public T visitPTagEnd(JavadocParser.PTagEndContext ctx)
Visit a parse tree produced byJavadocParser.pTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParagraph
public T visitParagraph(JavadocParser.ParagraphContext ctx)
Visit a parse tree produced byJavadocParser.paragraph().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParagraphin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiTagStart
public T visitLiTagStart(JavadocParser.LiTagStartContext ctx)
Visit a parse tree produced byJavadocParser.liTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLiTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiTagEnd
public T visitLiTagEnd(JavadocParser.LiTagEndContext ctx)
Visit a parse tree produced byJavadocParser.liTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLiTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLi
public T visitLi(JavadocParser.LiContext ctx)
Visit a parse tree produced byJavadocParser.li().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLiin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrTagStart
public T visitTrTagStart(JavadocParser.TrTagStartContext ctx)
Visit a parse tree produced byJavadocParser.trTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrTagEnd
public T visitTrTagEnd(JavadocParser.TrTagEndContext ctx)
Visit a parse tree produced byJavadocParser.trTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTr
public T visitTr(JavadocParser.TrContext ctx)
Visit a parse tree produced byJavadocParser.tr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTdTagStart
public T visitTdTagStart(JavadocParser.TdTagStartContext ctx)
Visit a parse tree produced byJavadocParser.tdTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTdTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTdTagEnd
public T visitTdTagEnd(JavadocParser.TdTagEndContext ctx)
Visit a parse tree produced byJavadocParser.tdTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTdTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTd
public T visitTd(JavadocParser.TdContext ctx)
Visit a parse tree produced byJavadocParser.td().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTdin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThTagStart
public T visitThTagStart(JavadocParser.ThTagStartContext ctx)
Visit a parse tree produced byJavadocParser.thTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitThTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThTagEnd
public T visitThTagEnd(JavadocParser.ThTagEndContext ctx)
Visit a parse tree produced byJavadocParser.thTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitThTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTh
public T visitTh(JavadocParser.ThContext ctx)
Visit a parse tree produced byJavadocParser.th().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitThin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBodyTagStart
public T visitBodyTagStart(JavadocParser.BodyTagStartContext ctx)
Visit a parse tree produced byJavadocParser.bodyTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBodyTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBodyTagEnd
public T visitBodyTagEnd(JavadocParser.BodyTagEndContext ctx)
Visit a parse tree produced byJavadocParser.bodyTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBodyTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBody
public T visitBody(JavadocParser.BodyContext ctx)
Visit a parse tree produced byJavadocParser.body().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBodyin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColgroupTagStart
public T visitColgroupTagStart(JavadocParser.ColgroupTagStartContext ctx)
Visit a parse tree produced byJavadocParser.colgroupTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColgroupTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColgroupTagEnd
public T visitColgroupTagEnd(JavadocParser.ColgroupTagEndContext ctx)
Visit a parse tree produced byJavadocParser.colgroupTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColgroupTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColgroup
public T visitColgroup(JavadocParser.ColgroupContext ctx)
Visit a parse tree produced byJavadocParser.colgroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColgroupin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDdTagStart
public T visitDdTagStart(JavadocParser.DdTagStartContext ctx)
Visit a parse tree produced byJavadocParser.ddTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDdTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDdTagEnd
public T visitDdTagEnd(JavadocParser.DdTagEndContext ctx)
Visit a parse tree produced byJavadocParser.ddTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDdTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDd
public T visitDd(JavadocParser.DdContext ctx)
Visit a parse tree produced byJavadocParser.dd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDdin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDtTagStart
public T visitDtTagStart(JavadocParser.DtTagStartContext ctx)
Visit a parse tree produced byJavadocParser.dtTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDtTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDtTagEnd
public T visitDtTagEnd(JavadocParser.DtTagEndContext ctx)
Visit a parse tree produced byJavadocParser.dtTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDtTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDt
public T visitDt(JavadocParser.DtContext ctx)
Visit a parse tree produced byJavadocParser.dt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDtin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHeadTagStart
public T visitHeadTagStart(JavadocParser.HeadTagStartContext ctx)
Visit a parse tree produced byJavadocParser.headTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHeadTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHeadTagEnd
public T visitHeadTagEnd(JavadocParser.HeadTagEndContext ctx)
Visit a parse tree produced byJavadocParser.headTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHeadTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHead
public T visitHead(JavadocParser.HeadContext ctx)
Visit a parse tree produced byJavadocParser.head().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHeadin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlTagStart
public T visitHtmlTagStart(JavadocParser.HtmlTagStartContext ctx)
Visit a parse tree produced byJavadocParser.htmlTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlTagEnd
public T visitHtmlTagEnd(JavadocParser.HtmlTagEndContext ctx)
Visit a parse tree produced byJavadocParser.htmlTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtml
public T visitHtml(JavadocParser.HtmlContext ctx)
Visit a parse tree produced byJavadocParser.html().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionTagStart
public T visitOptionTagStart(JavadocParser.OptionTagStartContext ctx)
Visit a parse tree produced byJavadocParser.optionTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptionTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionTagEnd
public T visitOptionTagEnd(JavadocParser.OptionTagEndContext ctx)
Visit a parse tree produced byJavadocParser.optionTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptionTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOption
public T visitOption(JavadocParser.OptionContext ctx)
Visit a parse tree produced byJavadocParser.option().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptionin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTbodyTagStart
public T visitTbodyTagStart(JavadocParser.TbodyTagStartContext ctx)
Visit a parse tree produced byJavadocParser.tbodyTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTbodyTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTbodyTagEnd
public T visitTbodyTagEnd(JavadocParser.TbodyTagEndContext ctx)
Visit a parse tree produced byJavadocParser.tbodyTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTbodyTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTbody
public T visitTbody(JavadocParser.TbodyContext ctx)
Visit a parse tree produced byJavadocParser.tbody().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTbodyin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTfootTagStart
public T visitTfootTagStart(JavadocParser.TfootTagStartContext ctx)
Visit a parse tree produced byJavadocParser.tfootTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTfootTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTfootTagEnd
public T visitTfootTagEnd(JavadocParser.TfootTagEndContext ctx)
Visit a parse tree produced byJavadocParser.tfootTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTfootTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTfoot
public T visitTfoot(JavadocParser.TfootContext ctx)
Visit a parse tree produced byJavadocParser.tfoot().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTfootin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTheadTagStart
public T visitTheadTagStart(JavadocParser.TheadTagStartContext ctx)
Visit a parse tree produced byJavadocParser.theadTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTheadTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTheadTagEnd
public T visitTheadTagEnd(JavadocParser.TheadTagEndContext ctx)
Visit a parse tree produced byJavadocParser.theadTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTheadTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThead
public T visitThead(JavadocParser.TheadContext ctx)
Visit a parse tree produced byJavadocParser.thead().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTheadin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingletonElement
public T visitSingletonElement(JavadocParser.SingletonElementContext ctx)
Visit a parse tree produced byJavadocParser.singletonElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSingletonElementin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyTag
public T visitEmptyTag(JavadocParser.EmptyTagContext ctx)
Visit a parse tree produced byJavadocParser.emptyTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEmptyTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAreaTag
public T visitAreaTag(JavadocParser.AreaTagContext ctx)
Visit a parse tree produced byJavadocParser.areaTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAreaTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBaseTag
public T visitBaseTag(JavadocParser.BaseTagContext ctx)
Visit a parse tree produced byJavadocParser.baseTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBaseTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasefontTag
public T visitBasefontTag(JavadocParser.BasefontTagContext ctx)
Visit a parse tree produced byJavadocParser.basefontTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBasefontTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBrTag
public T visitBrTag(JavadocParser.BrTagContext ctx)
Visit a parse tree produced byJavadocParser.brTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBrTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColTag
public T visitColTag(JavadocParser.ColTagContext ctx)
Visit a parse tree produced byJavadocParser.colTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameTag
public T visitFrameTag(JavadocParser.FrameTagContext ctx)
Visit a parse tree produced byJavadocParser.frameTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHrTag
public T visitHrTag(JavadocParser.HrTagContext ctx)
Visit a parse tree produced byJavadocParser.hrTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHrTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImgTag
public T visitImgTag(JavadocParser.ImgTagContext ctx)
Visit a parse tree produced byJavadocParser.imgTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitImgTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInputTag
public T visitInputTag(JavadocParser.InputTagContext ctx)
Visit a parse tree produced byJavadocParser.inputTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInputTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsindexTag
public T visitIsindexTag(JavadocParser.IsindexTagContext ctx)
Visit a parse tree produced byJavadocParser.isindexTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIsindexTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLinkTag
public T visitLinkTag(JavadocParser.LinkTagContext ctx)
Visit a parse tree produced byJavadocParser.linkTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLinkTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMetaTag
public T visitMetaTag(JavadocParser.MetaTagContext ctx)
Visit a parse tree produced byJavadocParser.metaTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMetaTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParamTag
public T visitParamTag(JavadocParser.ParamTagContext ctx)
Visit a parse tree produced byJavadocParser.paramTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParamTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWrongSingletonTag
public T visitWrongSingletonTag(JavadocParser.WrongSingletonTagContext ctx)
Visit a parse tree produced byJavadocParser.wrongSingletonTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWrongSingletonTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingletonTagName
public T visitSingletonTagName(JavadocParser.SingletonTagNameContext ctx)
Visit a parse tree produced byJavadocParser.singletonTagName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSingletonTagNamein interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDescription
public T visitDescription(JavadocParser.DescriptionContext ctx)
Visit a parse tree produced byJavadocParser.description().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDescriptionin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReference
public T visitReference(JavadocParser.ReferenceContext ctx)
Visit a parse tree produced byJavadocParser.reference().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReferencein interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameters
public T visitParameters(JavadocParser.ParametersContext ctx)
Visit a parse tree produced byJavadocParser.parameters().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParametersin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJavadocTag
public T visitJavadocTag(JavadocParser.JavadocTagContext ctx)
Visit a parse tree produced byJavadocParser.javadocTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJavadocTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJavadocInlineTag
public T visitJavadocInlineTag(JavadocParser.JavadocInlineTagContext ctx)
Visit a parse tree produced byJavadocParser.javadocInlineTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJavadocInlineTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlComment
public T visitHtmlComment(JavadocParser.HtmlCommentContext ctx)
Visit a parse tree produced byJavadocParser.htmlComment().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlCommentin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitText
public T visitText(JavadocParser.TextContext ctx)
Visit a parse tree produced byJavadocParser.text().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTextin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmbedTag
public T visitEmbedTag(JavadocParser.EmbedTagContext ctx)
Visit a parse tree produced byJavadocParser.embedTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEmbedTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeygenTag
public T visitKeygenTag(JavadocParser.KeygenTagContext ctx)
Visit a parse tree produced byJavadocParser.keygenTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeygenTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSourceTag
public T visitSourceTag(JavadocParser.SourceTagContext ctx)
Visit a parse tree produced byJavadocParser.sourceTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSourceTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrackTag
public T visitTrackTag(JavadocParser.TrackTagContext ctx)
Visit a parse tree produced byJavadocParser.trackTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrackTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWbrTag
public T visitWbrTag(JavadocParser.WbrTagContext ctx)
Visit a parse tree produced byJavadocParser.wbrTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWbrTagin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptgroupTagStart
public T visitOptgroupTagStart(JavadocParser.OptgroupTagStartContext ctx)
Visit a parse tree produced byJavadocParser.optgroupTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptgroupTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptgroupTagEnd
public T visitOptgroupTagEnd(JavadocParser.OptgroupTagEndContext ctx)
Visit a parse tree produced byJavadocParser.optgroupTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptgroupTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptgroup
public T visitOptgroup(JavadocParser.OptgroupContext ctx)
Visit a parse tree produced byJavadocParser.optgroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptgroupin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRbTagStart
public T visitRbTagStart(JavadocParser.RbTagStartContext ctx)
Visit a parse tree produced byJavadocParser.rbTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRbTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRbTagEnd
public T visitRbTagEnd(JavadocParser.RbTagEndContext ctx)
Visit a parse tree produced byJavadocParser.rbTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRbTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRb
public T visitRb(JavadocParser.RbContext ctx)
Visit a parse tree produced byJavadocParser.rb().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRbin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRtTagStart
public T visitRtTagStart(JavadocParser.RtTagStartContext ctx)
Visit a parse tree produced byJavadocParser.rtTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRtTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRtTagEnd
public T visitRtTagEnd(JavadocParser.RtTagEndContext ctx)
Visit a parse tree produced byJavadocParser.rtTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRtTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRt
public T visitRt(JavadocParser.RtContext ctx)
Visit a parse tree produced byJavadocParser.rt().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRtin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRtcTagStart
public T visitRtcTagStart(JavadocParser.RtcTagStartContext ctx)
Visit a parse tree produced byJavadocParser.rtcTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRtcTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRtcTagEnd
public T visitRtcTagEnd(JavadocParser.RtcTagEndContext ctx)
Visit a parse tree produced byJavadocParser.rtcTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRtcTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRtc
public T visitRtc(JavadocParser.RtcContext ctx)
Visit a parse tree produced byJavadocParser.rtc().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRtcin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRpTagStart
public T visitRpTagStart(JavadocParser.RpTagStartContext ctx)
Visit a parse tree produced byJavadocParser.rpTagStart(boolean).The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRpTagStartin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRpTagEnd
public T visitRpTagEnd(JavadocParser.RpTagEndContext ctx)
Visit a parse tree produced byJavadocParser.rpTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRpTagEndin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRp
public T visitRp(JavadocParser.RpContext ctx)
Visit a parse tree produced byJavadocParser.rp().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRpin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-