Package org.hibernate.grammars.graph
Class GraphLanguageParserBaseListener
java.lang.Object
org.hibernate.grammars.graph.GraphLanguageParserBaseListener
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
,GraphLanguageParserListener
This class provides an empty implementation of
GraphLanguageParserListener
,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
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
enterEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) 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
exitEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Exit a parse tree produced byGraphLanguageParser.graph()
.void
Exit a parse tree produced byGraphLanguageParser.subGraph()
.void
Exit a parse tree produced byGraphLanguageParser.subType()
.void
visitErrorNode
(org.antlr.v4.runtime.tree.ErrorNode node) void
visitTerminal
(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
GraphLanguageParserBaseListener
public GraphLanguageParserBaseListener()
-
-
Method Details
-
enterGraph
Enter a parse tree produced byGraphLanguageParser.graph()
.The default implementation does nothing.
- Specified by:
enterGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitGraph
Exit a parse tree produced byGraphLanguageParser.graph()
.The default implementation does nothing.
- Specified by:
exitGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributeList
Enter a parse tree produced byGraphLanguageParser.attributeList()
.The default implementation does nothing.
- Specified by:
enterAttributeList
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributeList
Exit a parse tree produced byGraphLanguageParser.attributeList()
.The default implementation does nothing.
- Specified by:
exitAttributeList
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributeNode
Enter a parse tree produced byGraphLanguageParser.attributeNode()
.The default implementation does nothing.
- Specified by:
enterAttributeNode
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributeNode
Exit a parse tree produced byGraphLanguageParser.attributeNode()
.The default implementation does nothing.
- Specified by:
exitAttributeNode
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributePath
Enter a parse tree produced byGraphLanguageParser.attributePath()
.The default implementation does nothing.
- Specified by:
enterAttributePath
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributePath
Exit a parse tree produced byGraphLanguageParser.attributePath()
.The default implementation does nothing.
- Specified by:
exitAttributePath
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributeQualifier
Enter a parse tree produced byGraphLanguageParser.attributeQualifier()
.The default implementation does nothing.
- Specified by:
enterAttributeQualifier
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributeQualifier
Exit a parse tree produced byGraphLanguageParser.attributeQualifier()
.The default implementation does nothing.
- Specified by:
exitAttributeQualifier
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterSubGraph
Enter a parse tree produced byGraphLanguageParser.subGraph()
.The default implementation does nothing.
- Specified by:
enterSubGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitSubGraph
Exit a parse tree produced byGraphLanguageParser.subGraph()
.The default implementation does nothing.
- Specified by:
exitSubGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterSubType
Enter a parse tree produced byGraphLanguageParser.subType()
.The default implementation does nothing.
- Specified by:
enterSubType
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitSubType
Exit a parse tree produced byGraphLanguageParser.subType()
.The default implementation does nothing.
- Specified by:
exitSubType
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-