Package de.jplag.rlang.grammar
Class RFilterBaseListener
java.lang.Object
de.jplag.rlang.grammar.RFilterBaseListener
- All Implemented Interfaces:
RFilterListener,org.antlr.v4.runtime.tree.ParseTreeListener
This class provides an empty implementation of
RFilterListener,
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 byRFilter.atom().voidEnter a parse tree produced byRFilter.eat().voidEnter a parse tree produced byRFilter.elem().voidenterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidenterOp(RFilter.OpContext ctx) Enter a parse tree produced byRFilter.op().voidEnter a parse tree produced byRFilter.stream().voidExit a parse tree produced byRFilter.atom().voidExit a parse tree produced byRFilter.eat().voidExit a parse tree produced byRFilter.elem().voidexitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) voidexitOp(RFilter.OpContext ctx) Exit a parse tree produced byRFilter.op().voidExit a parse tree produced byRFilter.stream().voidvisitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) voidvisitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
RFilterBaseListener
public RFilterBaseListener()
-
-
Method Details
-
enterStream
Enter a parse tree produced byRFilter.stream().The default implementation does nothing.
- Specified by:
enterStreamin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
exitStream
Exit a parse tree produced byRFilter.stream().The default implementation does nothing.
- Specified by:
exitStreamin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
enterEat
Enter a parse tree produced byRFilter.eat().The default implementation does nothing.
- Specified by:
enterEatin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
exitEat
Exit a parse tree produced byRFilter.eat().The default implementation does nothing.
- Specified by:
exitEatin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
enterElem
Enter a parse tree produced byRFilter.elem().The default implementation does nothing.
- Specified by:
enterElemin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
exitElem
Exit a parse tree produced byRFilter.elem().The default implementation does nothing.
- Specified by:
exitElemin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
enterAtom
Enter a parse tree produced byRFilter.atom().The default implementation does nothing.
- Specified by:
enterAtomin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
exitAtom
Exit a parse tree produced byRFilter.atom().The default implementation does nothing.
- Specified by:
exitAtomin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
enterOp
Enter a parse tree produced byRFilter.op().The default implementation does nothing.
- Specified by:
enterOpin interfaceRFilterListener- Parameters:
ctx- the parse tree
-
exitOp
Exit a parse tree produced byRFilter.op().The default implementation does nothing.
- Specified by:
exitOpin interfaceRFilterListener- 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
-