Class AfxParserBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
AfxParserVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
AfxParserVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byAfxParser.afxCode().Visit a parse tree produced byAfxParser.afxFragment().Visit a parse tree produced byAfxParser.bodyExpressionValue().Visit a parse tree produced byAfxParser.dtd().Visit a parse tree produced byAfxParser.fusionObjectTagEnd().Visit a parse tree produced byAfxParser.fusionObjectTagName().Visit a parse tree produced byAfxParser.fusionObjectTagStart().Visit a parse tree produced byAfxParser.htmlAttribute().Visit a parse tree produced byAfxParser.htmlAttributeName().Visit a parse tree produced byAfxParser.htmlAttributeValue().Visit a parse tree produced byAfxParser.htmlChardata().Visit a parse tree produced byAfxParser.htmlComment().Visit a parse tree produced byAfxParser.htmlTagName().Visit a parse tree produced byAfxParser.script().Visit a parse tree produced byAfxParser.scriptlet().Visit a parse tree produced byAfxParser.style().Visit a parse tree produced byAfxParser.tagAttributeExpressionValue().Visit a parse tree produced byAfxParser.tagAttributeSpreadExpression().Visit a parse tree produced byAfxParser.tagEnd().Visit a parse tree produced byAfxParser.tagStart().Visit a parse tree produced byAfxParser.xhtmlCDATA().Visit a parse tree produced byAfxParser.xml().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
AfxParserBaseVisitor
public AfxParserBaseVisitor()
-
-
Method Details
-
visitAfxCode
Visit a parse tree produced byAfxParser.afxCode().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAfxCodein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAfxFragment
Visit a parse tree produced byAfxParser.afxFragment().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAfxFragmentin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBodyExpressionValue
Visit a parse tree produced byAfxParser.bodyExpressionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBodyExpressionValuein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTagAttributeExpressionValue
Visit a parse tree produced byAfxParser.tagAttributeExpressionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTagAttributeExpressionValuein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFusionObjectTagStart
Visit a parse tree produced byAfxParser.fusionObjectTagStart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFusionObjectTagStartin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFusionObjectTagEnd
Visit a parse tree produced byAfxParser.fusionObjectTagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFusionObjectTagEndin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFusionObjectTagName
Visit a parse tree produced byAfxParser.fusionObjectTagName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFusionObjectTagNamein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTagStart
Visit a parse tree produced byAfxParser.tagStart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTagStartin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTagEnd
Visit a parse tree produced byAfxParser.tagEnd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTagEndin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlAttribute
Visit a parse tree produced byAfxParser.htmlAttribute().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlAttributein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlAttributeName
Visit a parse tree produced byAfxParser.htmlAttributeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlAttributeNamein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlAttributeValue
Visit a parse tree produced byAfxParser.htmlAttributeValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlAttributeValuein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTagAttributeSpreadExpression
Visit a parse tree produced byAfxParser.tagAttributeSpreadExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTagAttributeSpreadExpressionin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlTagName
Visit a parse tree produced byAfxParser.htmlTagName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlTagNamein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlChardata
Visit a parse tree produced byAfxParser.htmlChardata().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlChardatain interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHtmlComment
Visit a parse tree produced byAfxParser.htmlComment().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHtmlCommentin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXhtmlCDATA
Visit a parse tree produced byAfxParser.xhtmlCDATA().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXhtmlCDATAin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDtd
Visit a parse tree produced byAfxParser.dtd().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDtdin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXml
Visit a parse tree produced byAfxParser.xml().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXmlin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitScriptlet
Visit a parse tree produced byAfxParser.scriptlet().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitScriptletin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitScript
Visit a parse tree produced byAfxParser.script().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitScriptin interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStyle
Visit a parse tree produced byAfxParser.style().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStylein interfaceAfxParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-