Lines Matching defs:class
23 * Try to instantiate a proxy class with interfaces that have conflicting
26 public class Clash {
32 Proxy.newProxyInstance(Clash.class.getClassLoader(),
33 new Class[] { Interface1A.class, Interface1A.class },
41 Proxy.newProxyInstance(Clash.class.getClassLoader(),
42 new Class[] { Interface1A.class, Interface1B.class },
63 class ClashInvocationHandler implements InvocationHandler {