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
public class GraphLanguageParserBaseListener extends Object implements GraphLanguageParserListener
This class provides an empty implementation ofGraphLanguageParserListener
, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description GraphLanguageParserBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterGraph
public void enterGraph(GraphLanguageParser.GraphContext ctx)
Enter a parse tree produced byGraphLanguageParser.graph()
.The default implementation does nothing.
- Specified by:
enterGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitGraph
public void exitGraph(GraphLanguageParser.GraphContext ctx)
Exit a parse tree produced byGraphLanguageParser.graph()
.The default implementation does nothing.
- Specified by:
exitGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributeList
public void enterAttributeList(GraphLanguageParser.AttributeListContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributeList()
.The default implementation does nothing.
- Specified by:
enterAttributeList
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributeList
public void exitAttributeList(GraphLanguageParser.AttributeListContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributeList()
.The default implementation does nothing.
- Specified by:
exitAttributeList
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributeNode
public void enterAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributeNode()
.The default implementation does nothing.
- Specified by:
enterAttributeNode
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributeNode
public void exitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributeNode()
.The default implementation does nothing.
- Specified by:
exitAttributeNode
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributePath
public void enterAttributePath(GraphLanguageParser.AttributePathContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributePath()
.The default implementation does nothing.
- Specified by:
enterAttributePath
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributePath
public void exitAttributePath(GraphLanguageParser.AttributePathContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributePath()
.The default implementation does nothing.
- Specified by:
exitAttributePath
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterAttributeQualifier
public void enterAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)
Enter a parse tree produced byGraphLanguageParser.attributeQualifier()
.The default implementation does nothing.
- Specified by:
enterAttributeQualifier
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitAttributeQualifier
public void exitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx)
Exit a parse tree produced byGraphLanguageParser.attributeQualifier()
.The default implementation does nothing.
- Specified by:
exitAttributeQualifier
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterSubGraph
public void enterSubGraph(GraphLanguageParser.SubGraphContext ctx)
Enter a parse tree produced byGraphLanguageParser.subGraph()
.The default implementation does nothing.
- Specified by:
enterSubGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitSubGraph
public void exitSubGraph(GraphLanguageParser.SubGraphContext ctx)
Exit a parse tree produced byGraphLanguageParser.subGraph()
.The default implementation does nothing.
- Specified by:
exitSubGraph
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
enterSubType
public void enterSubType(GraphLanguageParser.SubTypeContext ctx)
Enter a parse tree produced byGraphLanguageParser.subType()
.The default implementation does nothing.
- Specified by:
enterSubType
in interfaceGraphLanguageParserListener
- Parameters:
ctx
- the parse tree
-
exitSubType
public void exitSubType(GraphLanguageParser.SubTypeContext ctx)
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
-
-