Package org.hibernate.grammars.graph
Interface GraphLanguageParserVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor 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 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().
-
-
-
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
-
-