Class AbstractTemporalLogicBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
AbstractTemporalLogicVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
AbstractTemporalLogicVisitor,
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 byAbstractTemporalLogicParser.binaryOperator().Visit a parse tree produced byAbstractTemporalLogicParser.binaryTemporalOperator().Visit a parse tree produced byAbstractTemporalLogicParser.comparisonOperator().Visit a parse tree produced byAbstractTemporalLogicParser.interval().Visit a parse tree produced byAbstractTemporalLogicParser.unaryOperator().Visit a parse tree produced byAbstractTemporalLogicParser.unaryTemporalOperator().Visit a parse tree produced byAbstractTemporalLogicParser.value().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
-
AbstractTemporalLogicBaseVisitor
public AbstractTemporalLogicBaseVisitor()
-
-
Method Details
-
visitUnaryOperator
Visit a parse tree produced byAbstractTemporalLogicParser.unaryOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnaryOperatorin interfaceAbstractTemporalLogicVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryTemporalOperator
Visit a parse tree produced byAbstractTemporalLogicParser.unaryTemporalOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnaryTemporalOperatorin interfaceAbstractTemporalLogicVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryOperator
Visit a parse tree produced byAbstractTemporalLogicParser.binaryOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBinaryOperatorin interfaceAbstractTemporalLogicVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryTemporalOperator
Visit a parse tree produced byAbstractTemporalLogicParser.binaryTemporalOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBinaryTemporalOperatorin interfaceAbstractTemporalLogicVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
Visit a parse tree produced byAbstractTemporalLogicParser.comparisonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitComparisonOperatorin interfaceAbstractTemporalLogicVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byAbstractTemporalLogicParser.value().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValuein interfaceAbstractTemporalLogicVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterval
Visit a parse tree produced byAbstractTemporalLogicParser.interval().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntervalin interfaceAbstractTemporalLogicVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-