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 TypeMethodDescriptionvoidEnter a parse tree produced bySqlScriptParser.command().voidEnter a parse tree produced bySqlScriptParser.commandBlock().voidEnter a parse tree produced bySqlScriptParser.script().voidExit a parse tree produced bySqlScriptParser.command().voidExit a parse tree produced bySqlScriptParser.commandBlock().voidExit 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
-