Package org.hibernate.grammars.graph
Interface GraphLanguageParserListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
GraphLanguageParserBaseListener
public interface GraphLanguageParserListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byGraphLanguageParser.
-
-
Method Summary
-
-
-
Method Detail
-
enterGraph
void enterGraph(GraphLanguageParser.GraphContext ctx)
Enter a parse tree produced byGraphLanguageParser.graph().- Parameters:
ctx- the parse tree
-
exitGraph
void exitGraph(GraphLanguageParser.GraphContext ctx)
Exit a parse tree produced byGraphLanguageParser.graph().- Parameters:
ctx- the parse tree
-
enterAttributeList
void enterAttributeList(GraphLanguageParser.AttributeListContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributeList().- Parameters:
ctx- the parse tree
-
exitAttributeList
void exitAttributeList(GraphLanguageParser.AttributeListContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributeList().- Parameters:
ctx- the parse tree
-
enterAttributeNode
void enterAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributeNode().- Parameters:
ctx- the parse tree
-
exitAttributeNode
void exitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributeNode().- Parameters:
ctx- the parse tree
-
enterAttributePath
void enterAttributePath(GraphLanguageParser.AttributePathContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributePath().- Parameters:
ctx- the parse tree
-
exitAttributePath
void exitAttributePath(GraphLanguageParser.AttributePathContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributePath().- Parameters:
ctx- the parse tree
-
enterAttributeQualifier
void enterAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributeQualifier().- Parameters:
ctx- the parse tree
-
exitAttributeQualifier
void exitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributeQualifier().- Parameters:
ctx- the parse tree
-
enterSubGraph
void enterSubGraph(GraphLanguageParser.SubGraphContext ctx)
Enter a parse tree produced byGraphLanguageParser.subGraph().- Parameters:
ctx- the parse tree
-
exitSubGraph
void exitSubGraph(GraphLanguageParser.SubGraphContext ctx)
Exit a parse tree produced byGraphLanguageParser.subGraph().- Parameters:
ctx- the parse tree
-
enterSubType
void enterSubType(GraphLanguageParser.SubTypeContext ctx)
Enter a parse tree produced byGraphLanguageParser.subType().- Parameters:
ctx- the parse tree
-
exitSubType
void exitSubType(GraphLanguageParser.SubTypeContext ctx)
Exit a parse tree produced byGraphLanguageParser.subType().- Parameters:
ctx- the parse tree
-
-