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

org.hibernate.graph.internal.parse.GraphLanguageParserBaseVisitor Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha2
Show newest version
// Generated from /home/sebersole/projects/hibernate/hibernate-orm/6/hibernate-orm/hibernate-core/src/main/antlr/org/hibernate/graph/internal/parse/GraphLanguageParser.g4 by ANTLR 4.7.1

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.graph.internal.parse;

import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;

/**
 * This class provides an empty implementation of {@link GraphLanguageParserVisitor},
 * 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 GraphLanguageParserBaseVisitor extends AbstractParseTreeVisitor implements GraphLanguageParserVisitor {
	/**
	 * {@inheritDoc}
	 *
	 * 

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

*/ @Override public T visitGraph(GraphLanguageParser.GraphContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

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

*/ @Override public T visitAttributeList(GraphLanguageParser.AttributeListContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

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

*/ @Override public T visitAttributeNode(GraphLanguageParser.AttributeNodeContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

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

*/ @Override public T visitAttributePath(GraphLanguageParser.AttributePathContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

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

*/ @Override public T visitAttributeQualifier(GraphLanguageParser.AttributeQualifierContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

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

*/ @Override public T visitSubGraph(GraphLanguageParser.SubGraphContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

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

*/ @Override public T visitSubType(GraphLanguageParser.SubTypeContext ctx) { return visitChildren(ctx); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy