Package net.maswag.falcaun
Interface LTLVisitor<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:
LTLBaseVisitor,LTLVisitorImpl
public interface LTLVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
LTLParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byLTLParser.binaryOperator().Visit a parse tree produced byLTLParser.binaryTemporalOperator().Visit a parse tree produced byLTLParser.comparisonOperator().Visit a parse tree produced byLTLParser.expr().Visit a parse tree produced byLTLParser.interval().Visit a parse tree produced byLTLParser.unaryOperator().Visit a parse tree produced byLTLParser.unaryTemporalOperator().Visit a parse tree produced byLTLParser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitExpr
Visit a parse tree produced byLTLParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryOperator
Visit a parse tree produced byLTLParser.unaryOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryTemporalOperator
Visit a parse tree produced byLTLParser.unaryTemporalOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryOperator
Visit a parse tree produced byLTLParser.binaryOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryTemporalOperator
Visit a parse tree produced byLTLParser.binaryTemporalOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
Visit a parse tree produced byLTLParser.comparisonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byLTLParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInterval
Visit a parse tree produced byLTLParser.interval().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-