Class HdbschemaBaseListener
java.lang.Object
com.codbex.kronos.parser.hdbschema.core.HdbschemaBaseListener
- All Implemented Interfaces:
HdbschemaListener,org.antlr.v4.runtime.tree.ParseTreeListener
- Direct Known Subclasses:
HDBSchemaCoreListener
This class provides an empty implementation of
HdbschemaListener,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidEnter a parse tree produced byHdbschemaParser.hdbschemaDefinition().voidEnter a parse tree produced byHdbschemaParser.schemaNameProp().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidExit a parse tree produced byHdbschemaParser.hdbschemaDefinition().voidExit a parse tree produced byHdbschemaParser.schemaNameProp().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
HdbschemaBaseListener
public HdbschemaBaseListener()
-
-
Method Details
-
enterHdbschemaDefinition
Enter a parse tree produced byHdbschemaParser.hdbschemaDefinition().The default implementation does nothing.
- Specified by:
enterHdbschemaDefinitionin interfaceHdbschemaListener- Parameters:
ctx- the parse tree
-
exitHdbschemaDefinition
Exit a parse tree produced byHdbschemaParser.hdbschemaDefinition().The default implementation does nothing.
- Specified by:
exitHdbschemaDefinitionin interfaceHdbschemaListener- Parameters:
ctx- the parse tree
-
enterSchemaNameProp
Enter a parse tree produced byHdbschemaParser.schemaNameProp().The default implementation does nothing.
- Specified by:
enterSchemaNamePropin interfaceHdbschemaListener- Parameters:
ctx- the parse tree
-
exitSchemaNameProp
Exit a parse tree produced byHdbschemaParser.schemaNameProp().The default implementation does nothing.
- Specified by:
exitSchemaNamePropin interfaceHdbschemaListener- 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
-