Class RFilterBaseListener

java.lang.Object
de.jplag.rlang.grammar.RFilterBaseListener
All Implemented Interfaces:
RFilterListener, org.antlr.v4.runtime.tree.ParseTreeListener

public class RFilterBaseListener extends Object implements RFilterListener
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 Details

    • RFilterBaseListener

      public RFilterBaseListener()
  • Method Details

    • enterStream

      public void enterStream(RFilter.StreamContext ctx)
      Enter a parse tree produced by RFilter.stream().

      The default implementation does nothing.

      Specified by:
      enterStream in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • exitStream

      public void exitStream(RFilter.StreamContext ctx)
      Exit a parse tree produced by RFilter.stream().

      The default implementation does nothing.

      Specified by:
      exitStream in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • enterEat

      public void enterEat(RFilter.EatContext ctx)
      Enter a parse tree produced by RFilter.eat().

      The default implementation does nothing.

      Specified by:
      enterEat in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • exitEat

      public void exitEat(RFilter.EatContext ctx)
      Exit a parse tree produced by RFilter.eat().

      The default implementation does nothing.

      Specified by:
      exitEat in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • enterElem

      public void enterElem(RFilter.ElemContext ctx)
      Enter a parse tree produced by RFilter.elem().

      The default implementation does nothing.

      Specified by:
      enterElem in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • exitElem

      public void exitElem(RFilter.ElemContext ctx)
      Exit a parse tree produced by RFilter.elem().

      The default implementation does nothing.

      Specified by:
      exitElem in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • enterAtom

      public void enterAtom(RFilter.AtomContext ctx)
      Enter a parse tree produced by RFilter.atom().

      The default implementation does nothing.

      Specified by:
      enterAtom in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • exitAtom

      public void exitAtom(RFilter.AtomContext ctx)
      Exit a parse tree produced by RFilter.atom().

      The default implementation does nothing.

      Specified by:
      exitAtom in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • enterOp

      public void enterOp(RFilter.OpContext ctx)
      Enter a parse tree produced by RFilter.op().

      The default implementation does nothing.

      Specified by:
      enterOp in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • exitOp

      public void exitOp(RFilter.OpContext ctx)
      Exit a parse tree produced by RFilter.op().

      The default implementation does nothing.

      Specified by:
      exitOp in interface RFilterListener
      Parameters:
      ctx - the parse tree
    • enterEveryRule

      public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)

      The default implementation does nothing.

      Specified by:
      enterEveryRule in interface org.antlr.v4.runtime.tree.ParseTreeListener
    • exitEveryRule

      public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)

      The default implementation does nothing.

      Specified by:
      exitEveryRule in interface org.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 interface org.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 interface org.antlr.v4.runtime.tree.ParseTreeListener