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

uild.api.json-fields-java.0.5.2.source-code.JsonFieldsBaseVisitor Maven / Gradle / Ivy

There is a newer version: 0.5.4
Show newest version
// Generated from JsonFields.g4 by ANTLR 4.3
package org.zalando.guild.api.json.fields.java.parser;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;

/**
 * This class provides an empty implementation of {@link JsonFieldsVisitor},
 * which can be extended to create a visitor which only needs to handle a subset
 * of the available methods.
 *
 * @param  The return type of the visit operation. Use {@link Void} for
 * operations with no return type.
 */
public class JsonFieldsBaseVisitor extends AbstractParseTreeVisitor implements JsonFieldsVisitor {
	/**
	 * {@inheritDoc}
	 *
	 * 

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitJson_fields(@NotNull JsonFieldsParser.Json_fieldsContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitNegation(@NotNull JsonFieldsParser.NegationContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitField_set(@NotNull JsonFieldsParser.Field_setContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitFields_expression(@NotNull JsonFieldsParser.Fields_expressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitField(@NotNull JsonFieldsParser.FieldContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitQualified_field(@NotNull JsonFieldsParser.Qualified_fieldContext ctx) { return visitChildren(ctx); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy