Class GraphLanguageParserBaseVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
,GraphLanguageParserVisitor<T>
- Direct Known Subclasses:
GraphParser
GraphLanguageParserVisitor
,
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 byGraphLanguageParser.attributeList()
.Visit a parse tree produced byGraphLanguageParser.attributeNode()
.Visit a parse tree produced byGraphLanguageParser.attributePath()
.Visit a parse tree produced byGraphLanguageParser.attributeQualifier()
.Visit a parse tree produced byGraphLanguageParser.graph()
.Visit a parse tree produced byGraphLanguageParser.subGraph()
.Visit a parse tree produced byGraphLanguageParser.subType()
.Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
GraphLanguageParserBaseVisitor
public GraphLanguageParserBaseVisitor()
-
-
Method Details
-
visitGraph
Visit a parse tree produced byGraphLanguageParser.graph()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitGraph
in interfaceGraphLanguageParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeList
Visit a parse tree produced byGraphLanguageParser.attributeList()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitAttributeList
in interfaceGraphLanguageParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeNode
Visit a parse tree produced byGraphLanguageParser.attributeNode()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitAttributeNode
in interfaceGraphLanguageParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributePath
Visit a parse tree produced byGraphLanguageParser.attributePath()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitAttributePath
in interfaceGraphLanguageParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeQualifier
Visit a parse tree produced byGraphLanguageParser.attributeQualifier()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitAttributeQualifier
in interfaceGraphLanguageParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSubGraph
Visit a parse tree produced byGraphLanguageParser.subGraph()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSubGraph
in interfaceGraphLanguageParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSubType
Visit a parse tree produced byGraphLanguageParser.subType()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSubType
in interfaceGraphLanguageParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-