Package org.hibernate.grammars.importsql
Interface SqlScriptParserListener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
SqlScriptParserBaseListener
public interface SqlScriptParserListener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced bySqlScriptParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterCommand(SqlScriptParser.CommandContext ctx)Enter a parse tree produced bySqlScriptParser.command().voidenterCommandBlock(SqlScriptParser.CommandBlockContext ctx)Enter a parse tree produced bySqlScriptParser.commandBlock().voidenterScript(SqlScriptParser.ScriptContext ctx)Enter a parse tree produced bySqlScriptParser.script().voidexitCommand(SqlScriptParser.CommandContext ctx)Exit a parse tree produced bySqlScriptParser.command().voidexitCommandBlock(SqlScriptParser.CommandBlockContext ctx)Exit a parse tree produced bySqlScriptParser.commandBlock().voidexitScript(SqlScriptParser.ScriptContext ctx)Exit a parse tree produced bySqlScriptParser.script().
-
-
-
Method Detail
-
enterScript
void enterScript(SqlScriptParser.ScriptContext ctx)
Enter a parse tree produced bySqlScriptParser.script().- Parameters:
ctx- the parse tree
-
exitScript
void exitScript(SqlScriptParser.ScriptContext ctx)
Exit a parse tree produced bySqlScriptParser.script().- Parameters:
ctx- the parse tree
-
enterCommandBlock
void enterCommandBlock(SqlScriptParser.CommandBlockContext ctx)
Enter a parse tree produced bySqlScriptParser.commandBlock().- Parameters:
ctx- the parse tree
-
exitCommandBlock
void exitCommandBlock(SqlScriptParser.CommandBlockContext ctx)
Exit a parse tree produced bySqlScriptParser.commandBlock().- Parameters:
ctx- the parse tree
-
enterCommand
void enterCommand(SqlScriptParser.CommandContext ctx)
Enter a parse tree produced bySqlScriptParser.command().- Parameters:
ctx- the parse tree
-
exitCommand
void exitCommand(SqlScriptParser.CommandContext ctx)
Exit a parse tree produced bySqlScriptParser.command().- Parameters:
ctx- the parse tree
-
-