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:
enterGraphin 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:
exitGraphin 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:
enterAttributeListin 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:
exitAttributeListin 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:
enterAttributeNodein 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:
exitAttributeNodein 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:
enterAttributePathin 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:
exitAttributePathin 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:
enterAttributeQualifierin 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:
exitAttributeQualifierin 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:
enterSubGraphin 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:
exitSubGraphin 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:
enterSubTypein 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:
exitSubTypein interfaceGraphLanguageParserListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-