Package net.maswag.falcaun
Class SignalMapperBaseListener
java.lang.Object
net.maswag.falcaun.SignalMapperBaseListener
- All Implemented Interfaces:
SignalMapperListener
,org.antlr.v4.runtime.tree.ParseTreeListener
This class provides an empty implementation of
SignalMapperListener
,
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 bySignalMapperParser.atomic()
.void
enterEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Enter a parse tree produced bySignalMapperParser.expr()
.void
Enter a parse tree produced bySignalMapperParser.value()
.void
Exit a parse tree produced bySignalMapperParser.atomic()
.void
exitEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Exit a parse tree produced bySignalMapperParser.expr()
.void
Exit a parse tree produced bySignalMapperParser.value()
.void
visitErrorNode
(org.antlr.v4.runtime.tree.ErrorNode node) void
visitTerminal
(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
SignalMapperBaseListener
public SignalMapperBaseListener()
-
-
Method Details
-
enterExpr
Enter a parse tree produced bySignalMapperParser.expr()
.The default implementation does nothing.
- Specified by:
enterExpr
in interfaceSignalMapperListener
- Parameters:
ctx
- the parse tree
-
exitExpr
Exit a parse tree produced bySignalMapperParser.expr()
.The default implementation does nothing.
- Specified by:
exitExpr
in interfaceSignalMapperListener
- Parameters:
ctx
- the parse tree
-
enterAtomic
Enter a parse tree produced bySignalMapperParser.atomic()
.The default implementation does nothing.
- Specified by:
enterAtomic
in interfaceSignalMapperListener
- Parameters:
ctx
- the parse tree
-
exitAtomic
Exit a parse tree produced bySignalMapperParser.atomic()
.The default implementation does nothing.
- Specified by:
exitAtomic
in interfaceSignalMapperListener
- Parameters:
ctx
- the parse tree
-
enterValue
Enter a parse tree produced bySignalMapperParser.value()
.The default implementation does nothing.
- Specified by:
enterValue
in interfaceSignalMapperListener
- Parameters:
ctx
- the parse tree
-
exitValue
Exit a parse tree produced bySignalMapperParser.value()
.The default implementation does nothing.
- Specified by:
exitValue
in interfaceSignalMapperListener
- 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
-