Class AbstractTemporalLogicBaseListener
java.lang.Object
AbstractTemporalLogicBaseListener
- All Implemented Interfaces:
AbstractTemporalLogicListener
,org.antlr.v4.runtime.tree.ParseTreeListener
public class AbstractTemporalLogicBaseListener
extends Object
implements AbstractTemporalLogicListener
This class provides an empty implementation of
AbstractTemporalLogicListener
,
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 byAbstractTemporalLogicParser.binaryOperator()
.void
Enter a parse tree produced byAbstractTemporalLogicParser.binaryTemporalOperator()
.void
Enter a parse tree produced byAbstractTemporalLogicParser.comparisonOperator()
.void
enterEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Enter a parse tree produced byAbstractTemporalLogicParser.interval()
.void
Enter a parse tree produced byAbstractTemporalLogicParser.unaryOperator()
.void
Enter a parse tree produced byAbstractTemporalLogicParser.unaryTemporalOperator()
.void
Enter a parse tree produced byAbstractTemporalLogicParser.value()
.void
Exit a parse tree produced byAbstractTemporalLogicParser.binaryOperator()
.void
Exit a parse tree produced byAbstractTemporalLogicParser.binaryTemporalOperator()
.void
Exit a parse tree produced byAbstractTemporalLogicParser.comparisonOperator()
.void
exitEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Exit a parse tree produced byAbstractTemporalLogicParser.interval()
.void
Exit a parse tree produced byAbstractTemporalLogicParser.unaryOperator()
.void
Exit a parse tree produced byAbstractTemporalLogicParser.unaryTemporalOperator()
.void
Exit a parse tree produced byAbstractTemporalLogicParser.value()
.void
visitErrorNode
(org.antlr.v4.runtime.tree.ErrorNode node) void
visitTerminal
(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
AbstractTemporalLogicBaseListener
public AbstractTemporalLogicBaseListener()
-
-
Method Details
-
enterUnaryOperator
Enter a parse tree produced byAbstractTemporalLogicParser.unaryOperator()
.The default implementation does nothing.
- Specified by:
enterUnaryOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
exitUnaryOperator
Exit a parse tree produced byAbstractTemporalLogicParser.unaryOperator()
.The default implementation does nothing.
- Specified by:
exitUnaryOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
enterUnaryTemporalOperator
public void enterUnaryTemporalOperator(AbstractTemporalLogicParser.UnaryTemporalOperatorContext ctx) Enter a parse tree produced byAbstractTemporalLogicParser.unaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
enterUnaryTemporalOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
exitUnaryTemporalOperator
Exit a parse tree produced byAbstractTemporalLogicParser.unaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
exitUnaryTemporalOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
enterBinaryOperator
Enter a parse tree produced byAbstractTemporalLogicParser.binaryOperator()
.The default implementation does nothing.
- Specified by:
enterBinaryOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
exitBinaryOperator
Exit a parse tree produced byAbstractTemporalLogicParser.binaryOperator()
.The default implementation does nothing.
- Specified by:
exitBinaryOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
enterBinaryTemporalOperator
public void enterBinaryTemporalOperator(AbstractTemporalLogicParser.BinaryTemporalOperatorContext ctx) Enter a parse tree produced byAbstractTemporalLogicParser.binaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
enterBinaryTemporalOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
exitBinaryTemporalOperator
public void exitBinaryTemporalOperator(AbstractTemporalLogicParser.BinaryTemporalOperatorContext ctx) Exit a parse tree produced byAbstractTemporalLogicParser.binaryTemporalOperator()
.The default implementation does nothing.
- Specified by:
exitBinaryTemporalOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
enterComparisonOperator
Enter a parse tree produced byAbstractTemporalLogicParser.comparisonOperator()
.The default implementation does nothing.
- Specified by:
enterComparisonOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
exitComparisonOperator
Exit a parse tree produced byAbstractTemporalLogicParser.comparisonOperator()
.The default implementation does nothing.
- Specified by:
exitComparisonOperator
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
enterValue
Enter a parse tree produced byAbstractTemporalLogicParser.value()
.The default implementation does nothing.
- Specified by:
enterValue
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
exitValue
Exit a parse tree produced byAbstractTemporalLogicParser.value()
.The default implementation does nothing.
- Specified by:
exitValue
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
enterInterval
Enter a parse tree produced byAbstractTemporalLogicParser.interval()
.The default implementation does nothing.
- Specified by:
enterInterval
in interfaceAbstractTemporalLogicListener
- Parameters:
ctx
- the parse tree
-
exitInterval
Exit a parse tree produced byAbstractTemporalLogicParser.interval()
.The default implementation does nothing.
- Specified by:
exitInterval
in interfaceAbstractTemporalLogicListener
- 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
-