Package io.rtr.alchemy.filtering
Class FilterBaseListener
java.lang.Object
io.rtr.alchemy.filtering.FilterBaseListener
- All Implemented Interfaces:
FilterListener,org.antlr.v4.runtime.tree.ParseTreeListener
This class provides an empty implementation of
FilterListener,
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 TypeMethodDescriptionvoidEnter a parse tree produced byFilterParser.comparison().voidEnter a parse tree produced byFilterParser.constant().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidEnter a parse tree produced byFilterParser.exp().voidEnter a parse tree produced byFilterParser.factor().voidEnter a parse tree produced byFilterParser.term().voidEnter a parse tree produced byFilterParser.value().voidExit a parse tree produced byFilterParser.comparison().voidExit a parse tree produced byFilterParser.constant().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidExit a parse tree produced byFilterParser.exp().voidExit a parse tree produced byFilterParser.factor().voidExit a parse tree produced byFilterParser.term().voidExit a parse tree produced byFilterParser.value().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
FilterBaseListener
public FilterBaseListener()
-
-
Method Details
-
enterExp
Enter a parse tree produced byFilterParser.exp().The default implementation does nothing.
- Specified by:
enterExpin interfaceFilterListener- Parameters:
ctx- the parse tree
-
exitExp
Exit a parse tree produced byFilterParser.exp().The default implementation does nothing.
- Specified by:
exitExpin interfaceFilterListener- Parameters:
ctx- the parse tree
-
enterTerm
Enter a parse tree produced byFilterParser.term().The default implementation does nothing.
- Specified by:
enterTermin interfaceFilterListener- Parameters:
ctx- the parse tree
-
exitTerm
Exit a parse tree produced byFilterParser.term().The default implementation does nothing.
- Specified by:
exitTermin interfaceFilterListener- Parameters:
ctx- the parse tree
-
enterFactor
Enter a parse tree produced byFilterParser.factor().The default implementation does nothing.
- Specified by:
enterFactorin interfaceFilterListener- Parameters:
ctx- the parse tree
-
exitFactor
Exit a parse tree produced byFilterParser.factor().The default implementation does nothing.
- Specified by:
exitFactorin interfaceFilterListener- Parameters:
ctx- the parse tree
-
enterComparison
Enter a parse tree produced byFilterParser.comparison().The default implementation does nothing.
- Specified by:
enterComparisonin interfaceFilterListener- Parameters:
ctx- the parse tree
-
exitComparison
Exit a parse tree produced byFilterParser.comparison().The default implementation does nothing.
- Specified by:
exitComparisonin interfaceFilterListener- Parameters:
ctx- the parse tree
-
enterConstant
Enter a parse tree produced byFilterParser.constant().The default implementation does nothing.
- Specified by:
enterConstantin interfaceFilterListener- Parameters:
ctx- the parse tree
-
exitConstant
Exit a parse tree produced byFilterParser.constant().The default implementation does nothing.
- Specified by:
exitConstantin interfaceFilterListener- Parameters:
ctx- the parse tree
-
enterValue
Enter a parse tree produced byFilterParser.value().The default implementation does nothing.
- Specified by:
enterValuein interfaceFilterListener- Parameters:
ctx- the parse tree
-
exitValue
Exit a parse tree produced byFilterParser.value().The default implementation does nothing.
- Specified by:
exitValuein interfaceFilterListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-