D | PerformanceComparison.java | 75 RootBeanDefinition tee = new RootBeanDefinition(TeeImpl.class, true); 76 tee.setLazyInit(true); 79 tee.setConstructorArgumentValues(teeValues); 97 beanFactory.registerBeanDefinition("tee", tee); 139 final Tee tee = new TeeImpl("test"); 146 Bar bar = new BarImpl(tee, 5); 147 Bar copy = new BarImpl(tee, 5); 262 final Tee tee; field in PerformanceComparison.BarImpl 265 public BarImpl(Tee tee, @I int i) { in BarImpl() argument 266 this.tee = tee; in BarImpl() [all …]
|