Class GraphLanguageParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- org.hibernate.grammars.graph.GraphLanguageParserBaseVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>,GraphLanguageParserVisitor<T>
- Direct Known Subclasses:
GraphParser
public class GraphLanguageParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements GraphLanguageParserVisitor<T>
This class provides an empty implementation ofGraphLanguageParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description GraphLanguageParserBaseVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TvisitAttributeList(GraphLanguageParser.AttributeListContext ctx)Visit a parse tree produced byGraphLanguageParser.attributeList().TvisitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)Visit a parse tree produced byGraphLanguageParser.attributeNode().TvisitAttributePath(GraphLanguageParser.AttributePathContext ctx)Visit a parse tree produced byGraphLanguageParser.attributePath().TvisitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)Visit a parse tree produced byGraphLanguageParser.attributeQualifier().TvisitGraph(GraphLanguageParser.GraphContext ctx)Visit a parse tree produced byGraphLanguageParser.graph().TvisitSubGraph(GraphLanguageParser.SubGraphContext ctx)Visit a parse tree produced byGraphLanguageParser.subGraph().TvisitSubType(GraphLanguageParser.SubTypeContext ctx)Visit a parse tree produced byGraphLanguageParser.subType().-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
visitGraph
public T visitGraph(GraphLanguageParser.GraphContext ctx)
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:
visitGraphin interfaceGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeList
public T visitAttributeList(GraphLanguageParser.AttributeListContext ctx)
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:
visitAttributeListin interfaceGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeNode
public T visitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)
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:
visitAttributeNodein interfaceGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributePath
public T visitAttributePath(GraphLanguageParser.AttributePathContext ctx)
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:
visitAttributePathin interfaceGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAttributeQualifier
public T visitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)
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:
visitAttributeQualifierin interfaceGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubGraph
public T visitSubGraph(GraphLanguageParser.SubGraphContext ctx)
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:
visitSubGraphin interfaceGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubType
public T visitSubType(GraphLanguageParser.SubTypeContext ctx)
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:
visitSubTypein interfaceGraphLanguageParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-