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

org.hibernate.tool.hbm2ddl.grammar.SqlStatementParserVisitor Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
Show newest version
// Generated from /home/sebersole/projects/hibernate/design/6-old-new/hibernate-orm/hibernate-core/src/main/antlr/org/hibernate/tool/hbm2ddl/grammar/SqlStatementParser.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.tool.hbm2ddl.grammar;

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

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link SqlStatementParser}.
 *
 * @param  The return type of the visit operation. Use {@link Void} for
 * operations with no return type.
 */
public interface SqlStatementParserVisitor extends ParseTreeVisitor {
	/**
	 * Visit a parse tree produced by {@link SqlStatementParser#statements}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitStatements(SqlStatementParser.StatementsContext ctx);
	/**
	 * Visit a parse tree produced by {@link SqlStatementParser#statement}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitStatement(SqlStatementParser.StatementContext ctx);
	/**
	 * Visit a parse tree produced by {@link SqlStatementParser#text}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitText(SqlStatementParser.TextContext ctx);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy