Package com.caplin.fxapi.generator
Class SearchCriteriaBaseVisitor<T>
java.lang.Object
org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
com.caplin.fxapi.generator.SearchCriteriaBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
SearchCriteriaVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- Direct Known Subclasses:
SearchCriteriaVisitor
public class SearchCriteriaBaseVisitor<T>
extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
implements SearchCriteriaVisitor<T>
This class provides an empty implementation of
SearchCriteriaVisitor,
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 bySearchCriteriaParser.comparator().Visit a parse tree produced bySearchCriteriaParser.expression().Visit a parse tree produced bySearchCriteriaParser.operator().Visit a parse tree produced bySearchCriteriaParser.searchCriteria().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
-
SearchCriteriaBaseVisitor
public SearchCriteriaBaseVisitor()
-
-
Method Details
-
visitSearchCriteria
Visit a parse tree produced bySearchCriteriaParser.searchCriteria().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSearchCriteriain interfaceSearchCriteriaVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced bySearchCriteriaParser.expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpressionin interfaceSearchCriteriaVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparator
Visit a parse tree produced bySearchCriteriaParser.comparator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitComparatorin interfaceSearchCriteriaVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOperator
Visit a parse tree produced bySearchCriteriaParser.operator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOperatorin interfaceSearchCriteriaVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-