proxyfactoryfactory.java
来自「一个Java持久层类库」· Java 代码 · 共 38 行
JAVA
38 行
package org.hibernate.bytecode;import org.hibernate.proxy.ProxyFactory;/** * An interface for factories of {@link ProxyFactory proxy factory} instances. * <p/> * Currently used to abstract from the tupizer whether we are using CGLIB or * Javassist for lazy proxy generation. * * @author Steve Ebersole */public interface ProxyFactoryFactory { /** * Build a proxy factory specifically for handling runtime * lazy loading. * * @return The lazy-load proxy factory. */ public ProxyFactory buildProxyFactory(); /** * Build a proxy factory for basic proxy concerns. The return * should be capable of properly handling newInstance() calls. * <p/> * Should build basic proxies essentially equivalent to JDK proxies in * terms of capabilities, but should be able to deal with abstract super * classes in addition to proxy interfaces. * <p/> * Must pass in either superClass or interfaces (or both). * * @param superClass The abstract super class (or null if none). * @param interfaces Interfaces to be proxied (or null if none). * @return The proxy class */ public BasicProxyFactory buildBasicProxyFactory(Class superClass, Class[] interfaces);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?