177178179180181182183184
if (mbeanInterface == null) { mbeanInterface = Util.cast(Introspector.getStandardMBeanInterface( implementation.getClass())); } this.mbean = new StandardMBeanSupport(implementation, mbeanInterface); } }
329330331332333334335336337
if (isMXBean()) { this.mbean = new MXBeanSupport(implementation, Util.<Class<Object>>cast(getMBeanInterface())); } else { this.mbean = new StandardMBeanSupport(implementation, Util.<Class<Object>>cast(getMBeanInterface())); } }
165166167168169170171172
if (mbeanInterface == null) { mbeanInterface = Introspector.getStandardMBeanInterface( implementation.getClass()); } this.mbean = new StandardMBeanSupport(implementation, mbeanInterface); } }
315316317318319320321322323
if (isMXBean()) { this.mbean = new MXBeanSupport(implementation, (Class) getMBeanInterface()); } else { this.mbean = new StandardMBeanSupport(implementation, (Class) getMBeanInterface()); } }
179180181182183184185186