(Class<T> c)
| 40 | } |
| 41 | |
| 42 | public static <T> ProxyFluent<T> with(Class<T> c) { |
| 43 | return new ProxyFluent<T>(c); |
| 44 | } |
| 45 | |
| 46 | public static <T> ProxyFluent<T> with(Class<T> c, Object... constructorArguments) { |
| 47 | return new ProxyFluent<T>(c, constructorArguments); |
no outgoing calls