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

2008.solution.easyjson.easyjson-antlr4json.4.1.1.source-code.JsonBaseListener Maven / Gradle / Ivy

There is a newer version: 4.1.5
Show newest version
// Generated from Json.g4 by ANTLR 4.5.3
package com.jn.easyjson.antlr4json.generated;

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 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 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 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 enterJson(JsonParser.JsonContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitJson(JsonParser.JsonContext 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