Class JavadocParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- com.puppycrawl.tools.checkstyle.grammars.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
-
visitHtmlElementOpen
public T visitHtmlElementOpen(JavadocParser.HtmlElementOpenContext ctx)
Visit a parse tree produced byJavadocParser.htmlElementOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlElementOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlElementClose
public T visitHtmlElementClose(JavadocParser.HtmlElementCloseContext ctx)
Visit a parse tree produced byJavadocParser.htmlElementClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlElementClosein 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
-
visitPTagOpen
public T visitPTagOpen(JavadocParser.PTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.pTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPTagClose
public T visitPTagClose(JavadocParser.PTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.pTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPTagClosein 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
-
visitLiTagOpen
public T visitLiTagOpen(JavadocParser.LiTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.liTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLiTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiTagClose
public T visitLiTagClose(JavadocParser.LiTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.liTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLiTagClosein 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
-
visitTrTagOpen
public T visitTrTagOpen(JavadocParser.TrTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.trTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrTagClose
public T visitTrTagClose(JavadocParser.TrTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.trTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrTagClosein 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
-
visitTdTagOpen
public T visitTdTagOpen(JavadocParser.TdTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.tdTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTdTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTdTagClose
public T visitTdTagClose(JavadocParser.TdTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.tdTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTdTagClosein 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
-
visitThTagOpen
public T visitThTagOpen(JavadocParser.ThTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.thTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitThTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThTagClose
public T visitThTagClose(JavadocParser.ThTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.thTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitThTagClosein 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
-
visitBodyTagOpen
public T visitBodyTagOpen(JavadocParser.BodyTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.bodyTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBodyTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBodyTagClose
public T visitBodyTagClose(JavadocParser.BodyTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.bodyTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBodyTagClosein 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
-
visitColgroupTagOpen
public T visitColgroupTagOpen(JavadocParser.ColgroupTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.colgroupTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColgroupTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColgroupTagClose
public T visitColgroupTagClose(JavadocParser.ColgroupTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.colgroupTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColgroupTagClosein 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
-
visitDdTagOpen
public T visitDdTagOpen(JavadocParser.DdTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.ddTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDdTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDdTagClose
public T visitDdTagClose(JavadocParser.DdTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.ddTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDdTagClosein 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
-
visitDtTagOpen
public T visitDtTagOpen(JavadocParser.DtTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.dtTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDtTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDtTagClose
public T visitDtTagClose(JavadocParser.DtTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.dtTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDtTagClosein 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
-
visitHeadTagOpen
public T visitHeadTagOpen(JavadocParser.HeadTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.headTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHeadTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHeadTagClose
public T visitHeadTagClose(JavadocParser.HeadTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.headTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHeadTagClosein 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
-
visitHtmlTagOpen
public T visitHtmlTagOpen(JavadocParser.HtmlTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.htmlTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlTagClose
public T visitHtmlTagClose(JavadocParser.HtmlTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.htmlTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlTagClosein 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
-
visitOptionTagOpen
public T visitOptionTagOpen(JavadocParser.OptionTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.optionTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptionTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionTagClose
public T visitOptionTagClose(JavadocParser.OptionTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.optionTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptionTagClosein 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
-
visitTbodyTagOpen
public T visitTbodyTagOpen(JavadocParser.TbodyTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.tbodyTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTbodyTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTbodyTagClose
public T visitTbodyTagClose(JavadocParser.TbodyTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.tbodyTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTbodyTagClosein 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
-
visitTfootTagOpen
public T visitTfootTagOpen(JavadocParser.TfootTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.tfootTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTfootTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTfootTagClose
public T visitTfootTagClose(JavadocParser.TfootTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.tfootTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTfootTagClosein 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
-
visitTheadTagOpen
public T visitTheadTagOpen(JavadocParser.TheadTagOpenContext ctx)
Visit a parse tree produced byJavadocParser.theadTagOpen().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTheadTagOpenin interfaceJavadocParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTheadTagClose
public T visitTheadTagClose(JavadocParser.TheadTagCloseContext ctx)
Visit a parse tree produced byJavadocParser.theadTagClose().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTheadTagClosein 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
-
visitSingletonTag
public T visitSingletonTag(JavadocParser.SingletonTagContext ctx)
Visit a parse tree produced byJavadocParser.singletonTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSingletonTagin 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
-
visitWrongSinletonTag
public T visitWrongSinletonTag(JavadocParser.WrongSinletonTagContext ctx)
Visit a parse tree produced byJavadocParser.wrongSinletonTag().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWrongSinletonTagin 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
-
-