Package org.hibernate.grammars.importsql
Class SqlScriptParserBaseListener
java.lang.Object
org.hibernate.grammars.importsql.SqlScriptParserBaseListener
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener,SqlScriptParserListener
This class provides an empty implementation of
SqlScriptParserListener,
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 TypeMethodDescriptionvoidEnter a parse tree produced bySqlScriptParser.command().voidEnter a parse tree produced bySqlScriptParser.commandBlock().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidEnter a parse tree produced bySqlScriptParser.script().voidExit a parse tree produced bySqlScriptParser.command().voidExit a parse tree produced bySqlScriptParser.commandBlock().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidExit a parse tree produced bySqlScriptParser.script().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
SqlScriptParserBaseListener
public SqlScriptParserBaseListener()
-
-
Method Details
-
enterScript
Enter a parse tree produced bySqlScriptParser.script().The default implementation does nothing.
- Specified by:
enterScriptin interfaceSqlScriptParserListener- Parameters:
ctx- the parse tree
-
exitScript
Exit a parse tree produced bySqlScriptParser.script().The default implementation does nothing.
- Specified by:
exitScriptin interfaceSqlScriptParserListener- Parameters:
ctx- the parse tree
-
enterCommandBlock
Enter a parse tree produced bySqlScriptParser.commandBlock().The default implementation does nothing.
- Specified by:
enterCommandBlockin interfaceSqlScriptParserListener- Parameters:
ctx- the parse tree
-
exitCommandBlock
Exit a parse tree produced bySqlScriptParser.commandBlock().The default implementation does nothing.
- Specified by:
exitCommandBlockin interfaceSqlScriptParserListener- Parameters:
ctx- the parse tree
-
enterCommand
Enter a parse tree produced bySqlScriptParser.command().The default implementation does nothing.
- Specified by:
enterCommandin interfaceSqlScriptParserListener- Parameters:
ctx- the parse tree
-
exitCommand
Exit a parse tree produced bySqlScriptParser.command().The default implementation does nothing.
- Specified by:
exitCommandin interfaceSqlScriptParserListener- 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
-