• Home
  • Raw
  • Download

Lines Matching refs:ProxyFactory

10 import javassist.util.proxy.ProxyFactory;
64 ProxyFactory f = new ProxyFactory(); in testTarget()
92 ProxyFactory f = new ProxyFactory(); in testTarget1()
105 ProxyFactory f = new ProxyFactory(); in testObject()
117 ProxyFactory f = new ProxyFactory(); in testSetter()
137 ProxyFactory f = new ProxyFactory(); in testString()
152 ProxyFactory f = new ProxyFactory(); in testConstructor()
179 ProxyFactory f = new ProxyFactory(); in testInterface()
193 ProxyFactory f = new ProxyFactory(); in test2Interfaces()
214 ProxyFactory f = new ProxyFactory(); in testFilter()
235 ProxyFactory f = new ProxyFactory(); in testInit()
256 ProxyFactory f = new ProxyFactory(); in testCreate()
269 ProxyFactory f = new ProxyFactory(); in testBridgeMethod()
299 ProxyFactory f = new ProxyFactory(); in testGetters()
308 static class ProxyFactory2 extends ProxyFactory {
315 ProxyFactory.ClassLoaderProvider cp = ProxyFactory.classLoaderProvider; in testProvider()
318 ProxyFactory.classLoaderProvider = new ProxyFactory.ClassLoaderProvider() { in testProvider()
319 public ClassLoader get(ProxyFactory pf) { in testProvider()
328 ProxyFactory.classLoaderProvider = cp; in testProvider()
334 boolean prev = ProxyFactory.useCache; in testCache()
335 ProxyFactory.useCache = true; in testCache()
336 ProxyFactory f = new ProxyFactory(); in testCache()
339 ProxyFactory f2 = new ProxyFactory(); in testCache()
342 ProxyFactory f3 = new ProxyFactory(); in testCache()
346 ProxyFactory.useCache = true; in testCache()
347 ProxyFactory f4 = new ProxyFactory(); in testCache()
352 ProxyFactory f5 = new ProxyFactory(); in testCache()
356 ProxyFactory f6 = new ProxyFactory(); in testCache()
359 ProxyFactory.useCache = prev; in testCache()
372 ProxyFactory.ClassLoaderProvider cp = ProxyFactory.classLoaderProvider; in testReadWrite()
374 ProxyFactory.classLoaderProvider = new ProxyFactory.ClassLoaderProvider() { in testReadWrite()
375 public ClassLoader get(ProxyFactory pf) { in testReadWrite()
384 ProxyFactory pf = new ProxyFactory(); in testReadWrite()
393 ProxyFactory.classLoaderProvider = cp; in testReadWrite()
411 ProxyFactory pf = new ProxyFactory(); in testWriteReplace()
416 ProxyFactory pf2 = new ProxyFactory(); in testWriteReplace()
440 ProxyFactory factory = new ProxyFactory(); in testJIRA189()
461 ProxyFactory proxyFactory = new ProxyFactory(); in testJIRA127()