001/* 002 * Copyright (c) 2009 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.hayabusa.db; 017 018import java.sql.SQLException; 019 020/** 021 * DBColumn インターフェースで使用される データ編集用のインターフェースです。 022 * 適切な実装(サブクラス)を DBColumn に与えることで、データ編集方法を適宜 023 * 切り替えることが出来ます。 024 * 025 * @og.rev 4.0.0.0 (2006/10/30) 新規追加 026 * @og.group データ編集 027 * 028 * @version 4.0 029 * @author Kazuhiko Hasegawa 030 * @since JDK5.0, 031 * 032 * @param <T> 第1入力引数 033 * @param <U> 第2入力引数 034 */ 035public interface ExceptionBiConsumer<T,U> { 036 037 /** 038 * 指定された引数でこのオペレーションを実行します。 039 * 040 * @param tt 第1入力引数 041 * @param uu 第2入力引数 042 * 043 * @throws SQLException SQLエラーが発生した場合 044 */ 045 void accept( T tt, U uu ) throws SQLException; 046}