Interface AbstractTemporalLogicVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
AbstractTemporalLogicBaseVisitor
public interface AbstractTemporalLogicVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
AbstractTemporalLogicParser.-
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 interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitUnaryOperator
Visit a parse tree produced byAbstractTemporalLogicParser.unaryOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryTemporalOperator
Visit a parse tree produced byAbstractTemporalLogicParser.unaryTemporalOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryOperator
Visit a parse tree produced byAbstractTemporalLogicParser.binaryOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryTemporalOperator
Visit a parse tree produced byAbstractTemporalLogicParser.binaryTemporalOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
Visit a parse tree produced byAbstractTemporalLogicParser.comparisonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byAbstractTemporalLogicParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterval
Visit a parse tree produced byAbstractTemporalLogicParser.interval().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-