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; 8 9 public interface IProxyFactory<T> { 10 T createProxy(Class<T> toMock, InvocationHandler handler); 11 } 12