Package net.maswag.falcaun
Interface LTLListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
LTLBaseListener
public interface LTLListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
LTLParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced byLTLParser.binaryOperator()
.void
Enter a parse tree produced byLTLParser.binaryTemporalOperator()
.void
Enter a parse tree produced byLTLParser.comparisonOperator()
.void
Enter a parse tree produced byLTLParser.expr()
.void
Enter a parse tree produced byLTLParser.interval()
.void
Enter a parse tree produced byLTLParser.unaryOperator()
.void
Enter a parse tree produced byLTLParser.unaryTemporalOperator()
.void
Enter a parse tree produced byLTLParser.value()
.void
Exit a parse tree produced byLTLParser.binaryOperator()
.void
Exit a parse tree produced byLTLParser.binaryTemporalOperator()
.void
Exit a parse tree produced byLTLParser.comparisonOperator()
.void
Exit a parse tree produced byLTLParser.expr()
.void
Exit a parse tree produced byLTLParser.interval()
.void
Exit a parse tree produced byLTLParser.unaryOperator()
.void
Exit a parse tree produced byLTLParser.unaryTemporalOperator()
.void
Exit a parse tree produced byLTLParser.value()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterExpr
Enter a parse tree produced byLTLParser.expr()
.- Parameters:
ctx
- the parse tree
-
exitExpr
Exit a parse tree produced byLTLParser.expr()
.- Parameters:
ctx
- the parse tree
-
enterUnaryOperator
Enter a parse tree produced byLTLParser.unaryOperator()
.- Parameters:
ctx
- the parse tree
-
exitUnaryOperator
Exit a parse tree produced byLTLParser.unaryOperator()
.- Parameters:
ctx
- the parse tree
-
enterUnaryTemporalOperator
Enter a parse tree produced byLTLParser.unaryTemporalOperator()
.- Parameters:
ctx
- the parse tree
-
exitUnaryTemporalOperator
Exit a parse tree produced byLTLParser.unaryTemporalOperator()
.- Parameters:
ctx
- the parse tree
-
enterBinaryOperator
Enter a parse tree produced byLTLParser.binaryOperator()
.- Parameters:
ctx
- the parse tree
-
exitBinaryOperator
Exit a parse tree produced byLTLParser.binaryOperator()
.- Parameters:
ctx
- the parse tree
-
enterBinaryTemporalOperator
Enter a parse tree produced byLTLParser.binaryTemporalOperator()
.- Parameters:
ctx
- the parse tree
-
exitBinaryTemporalOperator
Exit a parse tree produced byLTLParser.binaryTemporalOperator()
.- Parameters:
ctx
- the parse tree
-
enterComparisonOperator
Enter a parse tree produced byLTLParser.comparisonOperator()
.- Parameters:
ctx
- the parse tree
-
exitComparisonOperator
Exit a parse tree produced byLTLParser.comparisonOperator()
.- Parameters:
ctx
- the parse tree
-
enterValue
Enter a parse tree produced byLTLParser.value()
.- Parameters:
ctx
- the parse tree
-
exitValue
Exit a parse tree produced byLTLParser.value()
.- Parameters:
ctx
- the parse tree
-
enterInterval
Enter a parse tree produced byLTLParser.interval()
.- Parameters:
ctx
- the parse tree
-
exitInterval
Exit a parse tree produced byLTLParser.interval()
.- Parameters:
ctx
- the parse tree
-