Package org.hibernate.grammars.importsql
Interface SqlScriptParserVisitor<T>
-
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
SqlScriptParserBaseVisitor
,SqlScriptVisitor
public interface SqlScriptParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced bySqlScriptParser
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
visitCommand(SqlScriptParser.CommandContext ctx)
Visit a parse tree produced bySqlScriptParser.command()
.T
visitCommandBlock(SqlScriptParser.CommandBlockContext ctx)
Visit a parse tree produced bySqlScriptParser.commandBlock()
.T
visitScript(SqlScriptParser.ScriptContext ctx)
Visit a parse tree produced bySqlScriptParser.script()
.
-
-
-
Method Detail
-
visitScript
T visitScript(SqlScriptParser.ScriptContext ctx)
Visit a parse tree produced bySqlScriptParser.script()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCommandBlock
T visitCommandBlock(SqlScriptParser.CommandBlockContext ctx)
Visit a parse tree produced bySqlScriptParser.commandBlock()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitCommand
T visitCommand(SqlScriptParser.CommandContext ctx)
Visit a parse tree produced bySqlScriptParser.command()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-