All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.JSONBaseListener Maven / Gradle / Ivy

The newest version!
// Generated from JSON.g by ANTLR 4.5

package com.wantedtech.common.xpresso.json2;

import java.util.regex.Pattern;
  


import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ErrorNode;
import org.antlr.v4.runtime.tree.TerminalNode;

/**
 * This class provides an empty implementation of {@link JSONListener},
 * which can be extended to create a listener which only needs to handle a subset
 * of the available methods.
 */
public class JSONBaseListener implements JSONListener {
	/**
	 * {@inheritDoc}
	 *
	 * 

The default implementation does nothing.

*/ @Override public void enterValue(JSONParser.ValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitValue(JSONParser.ValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterString(JSONParser.StringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitString(JSONParser.StringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterNumber(JSONParser.NumberContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitNumber(JSONParser.NumberContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterObject(JSONParser.ObjectContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitObject(JSONParser.ObjectContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterArray(JSONParser.ArrayContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitArray(JSONParser.ArrayContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterElements(JSONParser.ElementsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitElements(JSONParser.ElementsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterMembers(JSONParser.MembersContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitMembers(JSONParser.MembersContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterPair(JSONParser.PairContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitPair(JSONParser.PairContext 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) { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy