// Generated from Hello.g4 by ANTLR 4.7.2 import org.antlr.v4.runtime.ParserRuleContext; import org.antlr.v4.runtime.tree.ErrorNode; import org.antlr.v4.runtime.tree.TerminalNode; /** * This class provides an empty implementation of {@link HelloListener}, * which can be extended to create a listener which only needs to handle a subset * of the available methods. */ public class HelloBaseListener implements HelloListener { /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterR(HelloParser.RContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitR(HelloParser.RContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitTerminal(TerminalNode node) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitErrorNode(ErrorNode node) { } }