// Generated from /Users/gabrielsalvador/Code/controlp5/src/main/java/controlP5/layout/XML.g4 by ANTLR 4.12.0 package controlP5.layout; 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 XMLListener}, * which can be extended to create a listener which only needs to handle a subset * of the available methods. */ @SuppressWarnings("CheckReturnValue") public class XMLBaseListener implements XMLListener { /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterDocument(XMLParser.DocumentContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitDocument(XMLParser.DocumentContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterElement(XMLParser.ElementContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitElement(XMLParser.ElementContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterStartTag(XMLParser.StartTagContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitStartTag(XMLParser.StartTagContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEndTag(XMLParser.EndTagContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEndTag(XMLParser.EndTagContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAttribute(XMLParser.AttributeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAttribute(XMLParser.AttributeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterContent(XMLParser.ContentContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitContent(XMLParser.ContentContext 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) { } }