Class HdbschemaBaseVisitor<T>
java.lang.Object
org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
com.codbex.kronos.parser.hdbschema.core.HdbschemaBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
HdbschemaVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
public class HdbschemaBaseVisitor<T>
extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
implements HdbschemaVisitor<T>
This class provides an empty implementation of
HdbschemaVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byHdbschemaParser.hdbschemaDefinition().Visit a parse tree produced byHdbschemaParser.schemaNameProp().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
HdbschemaBaseVisitor
public HdbschemaBaseVisitor()
-
-
Method Details
-
visitHdbschemaDefinition
Visit a parse tree produced byHdbschemaParser.hdbschemaDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHdbschemaDefinitionin interfaceHdbschemaVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaNameProp
Visit a parse tree produced byHdbschemaParser.schemaNameProp().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSchemaNamePropin interfaceHdbschemaVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-