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

infinispan.com.mchange.v2.sql.filter.SynchronizedFilterStatement Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
/*
 * Distributed as part of mchange-commons-java 0.2.7
 *
 * Copyright (C) 2014 Machinery For Change, Inc.
 *
 * Author: Steve Waldman 
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of EITHER:
 *
 *     1) The GNU Lesser General Public License (LGPL), version 2.1, as 
 *        published by the Free Software Foundation
 *
 * OR
 *
 *     2) The Eclipse Public License (EPL), version 1.0
 *
 * You may choose which license to accept if you wish to redistribute
 * or modify this work. You may offer derivatives of this work
 * under the license you have chosen, or you may provide the same
 * choice of license which you have been offered here.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received copies of both LGPL v2.1 and EPL v1.0
 * along with this software; see the files LICENSE-EPL and LICENSE-LGPL.
 * If not, the text of these licenses are currently available at
 *
 * LGPL v2.1: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
 *  EPL v1.0: http://www.eclipse.org/org/documents/epl-v10.php 
 * 
 */

package com.mchange.v2.sql.filter;

import java.lang.Class;
import java.lang.Object;
import java.lang.String;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;

/**
 * This class was generated by com.mchange.v2.codegen.intfc.DelegatorGenerator.
 */
public abstract class SynchronizedFilterStatement implements Statement
{
	protected Statement inner;
	
	
	private void __setInner( Statement inner )
	{
		this.inner = inner;
	}
	
	public SynchronizedFilterStatement(Statement inner)
	{ __setInner( inner ); }
	
	public SynchronizedFilterStatement()
	{}
	
	public synchronized void setInner( Statement inner )
	{ __setInner( inner ); }
	
	public synchronized Statement getInner()
	{ return inner; }
	
	public synchronized boolean execute(String a, int b) throws SQLException
	{
		return inner.execute(a, b);
	}
	
	public synchronized boolean execute(String a, String[] b) throws SQLException
	{
		return inner.execute(a, b);
	}
	
	public synchronized boolean execute(String a) throws SQLException
	{
		return inner.execute(a);
	}
	
	public synchronized boolean execute(String a, int[] b) throws SQLException
	{
		return inner.execute(a, b);
	}
	
	public synchronized void clearWarnings() throws SQLException
	{
		inner.clearWarnings();
	}
	
	public synchronized SQLWarning getWarnings() throws SQLException
	{
		return inner.getWarnings();
	}
	
	public synchronized boolean isClosed() throws SQLException
	{
		return inner.isClosed();
	}
	
	public synchronized int getFetchDirection() throws SQLException
	{
		return inner.getFetchDirection();
	}
	
	public synchronized int getFetchSize() throws SQLException
	{
		return inner.getFetchSize();
	}
	
	public synchronized void setFetchDirection(int a) throws SQLException
	{
		inner.setFetchDirection(a);
	}
	
	public synchronized void setFetchSize(int a) throws SQLException
	{
		inner.setFetchSize(a);
	}
	
	public synchronized Connection getConnection() throws SQLException
	{
		return inner.getConnection();
	}
	
	public synchronized int getResultSetHoldability() throws SQLException
	{
		return inner.getResultSetHoldability();
	}
	
	public synchronized void addBatch(String a) throws SQLException
	{
		inner.addBatch(a);
	}
	
	public synchronized void cancel() throws SQLException
	{
		inner.cancel();
	}
	
	public synchronized void clearBatch() throws SQLException
	{
		inner.clearBatch();
	}
	
	public synchronized void closeOnCompletion() throws SQLException
	{
		inner.closeOnCompletion();
	}
	
	public synchronized int[] executeBatch() throws SQLException
	{
		return inner.executeBatch();
	}
	
	public synchronized ResultSet executeQuery(String a) throws SQLException
	{
		return inner.executeQuery(a);
	}
	
	public synchronized int executeUpdate(String a, int[] b) throws SQLException
	{
		return inner.executeUpdate(a, b);
	}
	
	public synchronized int executeUpdate(String a, String[] b) throws SQLException
	{
		return inner.executeUpdate(a, b);
	}
	
	public synchronized int executeUpdate(String a) throws SQLException
	{
		return inner.executeUpdate(a);
	}
	
	public synchronized int executeUpdate(String a, int b) throws SQLException
	{
		return inner.executeUpdate(a, b);
	}
	
	public synchronized ResultSet getGeneratedKeys() throws SQLException
	{
		return inner.getGeneratedKeys();
	}
	
	public synchronized int getMaxFieldSize() throws SQLException
	{
		return inner.getMaxFieldSize();
	}
	
	public synchronized int getMaxRows() throws SQLException
	{
		return inner.getMaxRows();
	}
	
	public synchronized boolean getMoreResults() throws SQLException
	{
		return inner.getMoreResults();
	}
	
	public synchronized boolean getMoreResults(int a) throws SQLException
	{
		return inner.getMoreResults(a);
	}
	
	public synchronized int getQueryTimeout() throws SQLException
	{
		return inner.getQueryTimeout();
	}
	
	public synchronized ResultSet getResultSet() throws SQLException
	{
		return inner.getResultSet();
	}
	
	public synchronized int getResultSetConcurrency() throws SQLException
	{
		return inner.getResultSetConcurrency();
	}
	
	public synchronized int getResultSetType() throws SQLException
	{
		return inner.getResultSetType();
	}
	
	public synchronized int getUpdateCount() throws SQLException
	{
		return inner.getUpdateCount();
	}
	
	public synchronized boolean isCloseOnCompletion() throws SQLException
	{
		return inner.isCloseOnCompletion();
	}
	
	public synchronized boolean isPoolable() throws SQLException
	{
		return inner.isPoolable();
	}
	
	public synchronized void setCursorName(String a) throws SQLException
	{
		inner.setCursorName(a);
	}
	
	public synchronized void setEscapeProcessing(boolean a) throws SQLException
	{
		inner.setEscapeProcessing(a);
	}
	
	public synchronized void setMaxFieldSize(int a) throws SQLException
	{
		inner.setMaxFieldSize(a);
	}
	
	public synchronized void setMaxRows(int a) throws SQLException
	{
		inner.setMaxRows(a);
	}
	
	public synchronized void setPoolable(boolean a) throws SQLException
	{
		inner.setPoolable(a);
	}
	
	public synchronized void setQueryTimeout(int a) throws SQLException
	{
		inner.setQueryTimeout(a);
	}
	
	public synchronized void close() throws SQLException
	{
		inner.close();
	}
	
	public synchronized boolean isWrapperFor(Class a) throws SQLException
	{
		return inner.isWrapperFor(a);
	}
	
	public synchronized Object unwrap(Class a) throws SQLException
	{
		return inner.unwrap(a);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy