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 by
SqlScriptParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced bySqlScriptParser.command()
.void
Enter a parse tree produced bySqlScriptParser.commandBlock()
.void
Enter a parse tree produced bySqlScriptParser.script()
.void
Exit a parse tree produced bySqlScriptParser.command()
.void
Exit a parse tree produced bySqlScriptParser.commandBlock()
.void
Exit a parse tree produced bySqlScriptParser.script()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterScript
Enter a parse tree produced bySqlScriptParser.script()
.- Parameters:
ctx
- the parse tree
-
exitScript
Exit a parse tree produced bySqlScriptParser.script()
.- Parameters:
ctx
- the parse tree
-
enterCommandBlock
Enter a parse tree produced bySqlScriptParser.commandBlock()
.- Parameters:
ctx
- the parse tree
-
exitCommandBlock
Exit a parse tree produced bySqlScriptParser.commandBlock()
.- Parameters:
ctx
- the parse tree
-
enterCommand
Enter a parse tree produced bySqlScriptParser.command()
.- Parameters:
ctx
- the parse tree
-
exitCommand
Exit a parse tree produced bySqlScriptParser.command()
.- Parameters:
ctx
- the parse tree
-