Class SQLBaseListener
- java.lang.Object
-
- io.ciera.runtime.instanceloading.sql.parser.SQLBaseListener
-
- All Implemented Interfaces:
SQLListener,org.antlr.v4.runtime.tree.ParseTreeListener
- Direct Known Subclasses:
SqlListener
public class SQLBaseListener extends Object implements SQLListener
This class provides an empty implementation ofSQLListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description SQLBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterSql_file
public void enterSql_file(SQLParser.Sql_fileContext ctx)
Enter a parse tree produced bySQLParser.sql_file().The default implementation does nothing.
- Specified by:
enterSql_filein interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitSql_file
public void exitSql_file(SQLParser.Sql_fileContext ctx)
Exit a parse tree produced bySQLParser.sql_file().The default implementation does nothing.
- Specified by:
exitSql_filein interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterInsert_statement
public void enterInsert_statement(SQLParser.Insert_statementContext ctx)
Enter a parse tree produced bySQLParser.insert_statement().The default implementation does nothing.
- Specified by:
enterInsert_statementin interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitInsert_statement
public void exitInsert_statement(SQLParser.Insert_statementContext ctx)
Exit a parse tree produced bySQLParser.insert_statement().The default implementation does nothing.
- Specified by:
exitInsert_statementin interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterLink_statement
public void enterLink_statement(SQLParser.Link_statementContext ctx)
Enter a parse tree produced bySQLParser.link_statement().The default implementation does nothing.
- Specified by:
enterLink_statementin interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitLink_statement
public void exitLink_statement(SQLParser.Link_statementContext ctx)
Exit a parse tree produced bySQLParser.link_statement().The default implementation does nothing.
- Specified by:
exitLink_statementin interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterLink
public void enterLink(SQLParser.LinkContext ctx)
Enter a parse tree produced bySQLParser.link().The default implementation does nothing.
- Specified by:
enterLinkin interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitLink
public void exitLink(SQLParser.LinkContext ctx)
Exit a parse tree produced bySQLParser.link().The default implementation does nothing.
- Specified by:
exitLinkin interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterTable_name
public void enterTable_name(SQLParser.Table_nameContext ctx)
Enter a parse tree produced bySQLParser.table_name().The default implementation does nothing.
- Specified by:
enterTable_namein interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitTable_name
public void exitTable_name(SQLParser.Table_nameContext ctx)
Exit a parse tree produced bySQLParser.table_name().The default implementation does nothing.
- Specified by:
exitTable_namein interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterValues
public void enterValues(SQLParser.ValuesContext ctx)
Enter a parse tree produced bySQLParser.values().The default implementation does nothing.
- Specified by:
enterValuesin interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitValues
public void exitValues(SQLParser.ValuesContext ctx)
Exit a parse tree produced bySQLParser.values().The default implementation does nothing.
- Specified by:
exitValuesin interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterValue
public void enterValue(SQLParser.ValueContext ctx)
Enter a parse tree produced bySQLParser.value().The default implementation does nothing.
- Specified by:
enterValuein interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitValue
public void exitValue(SQLParser.ValueContext ctx)
Exit a parse tree produced bySQLParser.value().The default implementation does nothing.
- Specified by:
exitValuein interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterRel_number
public void enterRel_number(SQLParser.Rel_numberContext ctx)
Enter a parse tree produced bySQLParser.rel_number().The default implementation does nothing.
- Specified by:
enterRel_numberin interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitRel_number
public void exitRel_number(SQLParser.Rel_numberContext ctx)
Exit a parse tree produced bySQLParser.rel_number().The default implementation does nothing.
- Specified by:
exitRel_numberin interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterIds
public void enterIds(SQLParser.IdsContext ctx)
Enter a parse tree produced bySQLParser.ids().The default implementation does nothing.
- Specified by:
enterIdsin interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitIds
public void exitIds(SQLParser.IdsContext ctx)
Exit a parse tree produced bySQLParser.ids().The default implementation does nothing.
- Specified by:
exitIdsin interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterId
public void enterId(SQLParser.IdContext ctx)
Enter a parse tree produced bySQLParser.id().The default implementation does nothing.
- Specified by:
enterIdin interfaceSQLListener- Parameters:
ctx- the parse tree
-
exitId
public void exitId(SQLParser.IdContext ctx)
Exit a parse tree produced bySQLParser.id().The default implementation does nothing.
- Specified by:
exitIdin interfaceSQLListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-