KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > easymock > internal > IProxyFactory


1 /*
2  * Copyright (c) 2001-2005 OFFIS. This program is made available under the terms of
3  * the MIT License.
4  */

5 package org.easymock.internal;
6
7 import java.lang.reflect.InvocationHandler JavaDoc;
8
9 public interface IProxyFactory<T> {
10     T createProxy(Class JavaDoc<T> toMock, InvocationHandler JavaDoc handler);
11 }
12
Popular Tags