Package org.hibernate.grammars.graph
Interface GraphLanguageParserVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
GraphLanguageParserBaseVisitor
,GraphParser
public interface GraphLanguageParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced byGraphLanguageParser
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
visitAttributeList(GraphLanguageParser.AttributeListContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributeList()
.T
visitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributeNode()
.T
visitAttributePath(GraphLanguageParser.AttributePathContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributePath()
.T
visitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributeQualifier()
.T
visitGraph(GraphLanguageParser.GraphContext ctx)
Visit a parse tree produced byGraphLanguageParser.graph()
.T
visitSubGraph(GraphLanguageParser.SubGraphContext ctx)
Visit a parse tree produced byGraphLanguageParser.subGraph()
.T
visitSubType(GraphLanguageParser.SubTypeContext ctx)
Visit a parse tree produced byGraphLanguageParser.subType()
.
-
-
-
Method Detail
-
visitGraph
T visitGraph(GraphLanguageParser.GraphContext ctx)
Visit a parse tree produced byGraphLanguageParser.graph()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeList
T visitAttributeList(GraphLanguageParser.AttributeListContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributeList()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeNode
T visitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributeNode()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributePath
T visitAttributePath(GraphLanguageParser.AttributePathContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributePath()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAttributeQualifier
T visitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)
Visit a parse tree produced byGraphLanguageParser.attributeQualifier()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSubGraph
T visitSubGraph(GraphLanguageParser.SubGraphContext ctx)
Visit a parse tree produced byGraphLanguageParser.subGraph()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSubType
T visitSubType(GraphLanguageParser.SubTypeContext ctx)
Visit a parse tree produced byGraphLanguageParser.subType()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-