MCPcopy Create free account
hub / github.com/Ericsson/proxy / with

Method with

src/main/java/com/ericsson/commonlibrary/proxy/Proxy.java:42–44  ·  view source on GitHub ↗
(Class<T> c)

Source from the content-addressed store, hash-verified

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);

Calls

no outgoing calls