Class LTLBaseListener
- All Implemented Interfaces:
LTLListener
,org.antlr.v4.runtime.tree.ParseTreeListener
LTLListener
,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
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
enterEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) 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
exitEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) 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()
.void
visitErrorNode
(org.antlr.v4.runtime.tree.ErrorNode node) void
visitTerminal
(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
LTLBaseListener
public LTLBaseListener()
-
-
Method Details
-
enterExpr
Enter a parse tree produced byLTLParser.expr()
.The default implementation does nothing.
- Specified by:
enterExpr
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitExpr
Exit a parse tree produced byLTLParser.expr()
.The default implementation does nothing.
- Specified by:
exitExpr
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterUnaryOperator
Enter a parse tree produced byLTLParser.unaryOperator()
.The default implementation does nothing.
- Specified by:
enterUnaryOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitUnaryOperator
Exit a parse tree produced byLTLParser.unaryOperator()
.The default implementation does nothing.
- Specified by:
exitUnaryOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterUnaryTemporalOperator
Enter a parse tree produced byLTLParser.unaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
enterUnaryTemporalOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitUnaryTemporalOperator
Exit a parse tree produced byLTLParser.unaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
exitUnaryTemporalOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterBinaryOperator
Enter a parse tree produced byLTLParser.binaryOperator()
.The default implementation does nothing.
- Specified by:
enterBinaryOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitBinaryOperator
Exit a parse tree produced byLTLParser.binaryOperator()
.The default implementation does nothing.
- Specified by:
exitBinaryOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterBinaryTemporalOperator
Enter a parse tree produced byLTLParser.binaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
enterBinaryTemporalOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitBinaryTemporalOperator
Exit a parse tree produced byLTLParser.binaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
exitBinaryTemporalOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterComparisonOperator
Enter a parse tree produced byLTLParser.comparisonOperator()
.The default implementation does nothing.
- Specified by:
enterComparisonOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitComparisonOperator
Exit a parse tree produced byLTLParser.comparisonOperator()
.The default implementation does nothing.
- Specified by:
exitComparisonOperator
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterValue
Enter a parse tree produced byLTLParser.value()
.The default implementation does nothing.
- Specified by:
enterValue
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitValue
Exit a parse tree produced byLTLParser.value()
.The default implementation does nothing.
- Specified by:
exitValue
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterInterval
Enter a parse tree produced byLTLParser.interval()
.The default implementation does nothing.
- Specified by:
enterInterval
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
exitInterval
Exit a parse tree produced byLTLParser.interval()
.The default implementation does nothing.
- Specified by:
exitInterval
in interfaceLTLListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-