Class WithBlockParserBaseListener

java.lang.Object
com.fizzed.rocker.antlr4.WithBlockParserBaseListener
All Implemented Interfaces:
WithBlockParserListener, org.antlr.v4.runtime.tree.ParseTreeListener
Direct Known Subclasses:
WithBlockParserListener

public class WithBlockParserBaseListener extends Object implements WithBlockParserListener
This class provides an empty implementation of WithBlockParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
  • Constructor Details

    • WithBlockParserBaseListener

      public WithBlockParserBaseListener()
  • Method Details

    • enterStart

      public void enterStart(WithBlockParser.StartContext ctx)
      Enter a parse tree produced by WithBlockParser.start().

      The default implementation does nothing.

      Specified by:
      enterStart in interface WithBlockParserListener
      Parameters:
      ctx - the parse tree
    • exitStart

      public void exitStart(WithBlockParser.StartContext ctx)
      Exit a parse tree produced by WithBlockParser.start().

      The default implementation does nothing.

      Specified by:
      exitStart in interface WithBlockParserListener
      Parameters:
      ctx - the parse tree
    • enterWithArguments

      public void enterWithArguments(WithBlockParser.WithArgumentsContext ctx)
      Enter a parse tree produced by WithBlockParser.withArguments().

      The default implementation does nothing.

      Specified by:
      enterWithArguments in interface WithBlockParserListener
      Parameters:
      ctx - the parse tree
    • exitWithArguments

      public void exitWithArguments(WithBlockParser.WithArgumentsContext ctx)
      Exit a parse tree produced by WithBlockParser.withArguments().

      The default implementation does nothing.

      Specified by:
      exitWithArguments in interface WithBlockParserListener
      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