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.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
GraphLanguageParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced byGraphLanguageParser.attributeList()
.void
Enter a parse tree produced byGraphLanguageParser.attributeNode()
.void
Enter a parse tree produced byGraphLanguageParser.attributePath()
.void
Enter a parse tree produced byGraphLanguageParser.attributeQualifier()
.void
Enter a parse tree produced byGraphLanguageParser.graph()
.void
Enter a parse tree produced byGraphLanguageParser.subGraph()
.void
Enter a parse tree produced byGraphLanguageParser.subType()
.void
Exit a parse tree produced byGraphLanguageParser.attributeList()
.void
Exit a parse tree produced byGraphLanguageParser.attributeNode()
.void
Exit a parse tree produced byGraphLanguageParser.attributePath()
.void
Exit a parse tree produced byGraphLanguageParser.attributeQualifier()
.void
Exit a parse tree produced byGraphLanguageParser.graph()
.void
Exit a parse tree produced byGraphLanguageParser.subGraph()
.void
Exit a parse tree produced byGraphLanguageParser.subType()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterGraph
Enter a parse tree produced byGraphLanguageParser.graph()
.- Parameters:
ctx
- the parse tree
-
exitGraph
Exit a parse tree produced byGraphLanguageParser.graph()
.- Parameters:
ctx
- the parse tree
-
enterAttributeList
Enter a parse tree produced byGraphLanguageParser.attributeList()
.- Parameters:
ctx
- the parse tree
-
exitAttributeList
Exit a parse tree produced byGraphLanguageParser.attributeList()
.- Parameters:
ctx
- the parse tree
-
enterAttributeNode
Enter a parse tree produced byGraphLanguageParser.attributeNode()
.- Parameters:
ctx
- the parse tree
-
exitAttributeNode
Exit a parse tree produced byGraphLanguageParser.attributeNode()
.- Parameters:
ctx
- the parse tree
-
enterAttributePath
Enter a parse tree produced byGraphLanguageParser.attributePath()
.- Parameters:
ctx
- the parse tree
-
exitAttributePath
Exit a parse tree produced byGraphLanguageParser.attributePath()
.- Parameters:
ctx
- the parse tree
-
enterAttributeQualifier
Enter a parse tree produced byGraphLanguageParser.attributeQualifier()
.- Parameters:
ctx
- the parse tree
-
exitAttributeQualifier
Exit a parse tree produced byGraphLanguageParser.attributeQualifier()
.- Parameters:
ctx
- the parse tree
-
enterSubGraph
Enter a parse tree produced byGraphLanguageParser.subGraph()
.- Parameters:
ctx
- the parse tree
-
exitSubGraph
Exit a parse tree produced byGraphLanguageParser.subGraph()
.- Parameters:
ctx
- the parse tree
-
enterSubType
Enter a parse tree produced byGraphLanguageParser.subType()
.- Parameters:
ctx
- the parse tree
-
exitSubType
Exit a parse tree produced byGraphLanguageParser.subType()
.- Parameters:
ctx
- the parse tree
-