📄 proxyfactory.java
字号:
//$Id: ProxyFactory.java,v 1.1.2.1 2004/01/27 07:35:06 oneovthafew Exp $
package net.sf.hibernate.proxy;
import java.io.Serializable;
import java.lang.reflect.Method;
import java.util.Set;
import net.sf.hibernate.HibernateException;
import net.sf.hibernate.engine.SessionImplementor;
/**
* @author Gavin King
*/
public interface ProxyFactory {
/**
* Called immediately after instantiation
*/
public void postInstantiate(
Class persistentClass,
Set interfaces,
Method getIdentifierMethod,
Method setIdentifierMethod
) throws HibernateException;
/**
* Create a new proxy
*/
public HibernateProxy getProxy(
Serializable id,
SessionImplementor session
) throws HibernateException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -