Package de.jplag.rlang.grammar
Interface RFilterListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
RFilterBaseListener
public interface RFilterListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
RFilter.-
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().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().voidexitOp(RFilter.OpContext ctx) Exit a parse tree produced byRFilter.op().voidExit a parse tree produced byRFilter.stream().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterStream
Enter a parse tree produced byRFilter.stream().- Parameters:
ctx- the parse tree
-
exitStream
Exit a parse tree produced byRFilter.stream().- Parameters:
ctx- the parse tree
-
enterEat
Enter a parse tree produced byRFilter.eat().- Parameters:
ctx- the parse tree
-
exitEat
Exit a parse tree produced byRFilter.eat().- Parameters:
ctx- the parse tree
-
enterElem
Enter a parse tree produced byRFilter.elem().- Parameters:
ctx- the parse tree
-
exitElem
Exit a parse tree produced byRFilter.elem().- Parameters:
ctx- the parse tree
-
enterAtom
Enter a parse tree produced byRFilter.atom().- Parameters:
ctx- the parse tree
-
exitAtom
Exit a parse tree produced byRFilter.atom().- Parameters:
ctx- the parse tree
-
enterOp
Enter a parse tree produced byRFilter.op().- Parameters:
ctx- the parse tree
-
exitOp
Exit a parse tree produced byRFilter.op().- Parameters:
ctx- the parse tree
-