📄 keygenerator.java
字号:
/*
* 11/14/2002 - 09:40:11
*
* $RCSfile: KeyGenerator.java,v $ - JDBF Object Relational mapping system
* Copyright (C) 2002 JDBF Development Team
* http://jdbf.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
$Id: KeyGenerator.java,v 1.6 2004/05/20 22:40:02 gmartone Exp $
*/
package org.jdbf.engine.keygen;
import java.math.BigDecimal;
import java.sql.Connection;
import org.jdbf.engine.repository.RepositoryView;
import org.jdbf.engine.sql.SqlInterface;
/**
* <code>KeyGenerator</code> representes the interface for
* key generator.
*
* @author Giovanni Martone
* @version $Revision: 1.6 $
* last changed by $Author: gmartone $
*
*/
public interface KeyGenerator{
/** Default value of key */
public BigDecimal ONE = new BigDecimal(1);
/**
* Generation of key is before insert.
*/
public boolean isBeforeInsert();
/**
* This generates a key for a field in
* the object described by the give view.
*
* @param view provides mapping of class to sql
* @param conn connection against database
* @param vendor of database vendor
* @param sqlInterface
* @exception KeyGenerationException if an error occurs
*
*/
Object generateKey(RepositoryView view,Connection conn,String vendor,
SqlInterface sqlInterface)
throws KeyGenerationException;
}
/*
$Log: KeyGenerator.java,v $
Revision 1.6 2004/05/20 22:40:02 gmartone
Changed for task 99073 (Coverage Javadocs)
Revision 1.5 2004/04/19 23:48:01 gmartone
changed type of Exception thrown in generateKey method
Revision 1.4 2004/02/24 22:20:22 gmartone
cosmetics changes
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -