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.ParseTreeListener
This interface defines a complete listener for a parse tree produced bySqlScriptParser
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
enterCommand(SqlScriptParser.CommandContext ctx)
Enter a parse tree produced bySqlScriptParser.command()
.void
enterCommandBlock(SqlScriptParser.CommandBlockContext ctx)
Enter a parse tree produced bySqlScriptParser.commandBlock()
.void
enterScript(SqlScriptParser.ScriptContext ctx)
Enter a parse tree produced bySqlScriptParser.script()
.void
exitCommand(SqlScriptParser.CommandContext ctx)
Exit a parse tree produced bySqlScriptParser.command()
.void
exitCommandBlock(SqlScriptParser.CommandBlockContext ctx)
Exit a parse tree produced bySqlScriptParser.commandBlock()
.void
exitScript(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
-
-