Searched defs:mbeanInterface (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/javax/management/standardmbean/
H A DDeadlockTest.java36 public <T> DeadlockTest(T implementation, Class<T> mbeanInterface) argument
38 super(implementation, mbeanInterface);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DTestUtils.java90 Class<T> mbeanInterface) {
108 newProxy = JMX.newMXBeanProxy(mbs,name,mbeanInterface,true);
110 newProxy = JMX.newMBeanProxy(mbs,name,mbeanInterface,true);
89 makeNotificationEmitter(T proxy, Class<T> mbeanInterface) argument
/openjdk7/jdk/src/share/classes/javax/management/
H A DStandardEmitterMBean.java34 * StandardEmitterMBean(implementation, mbeanInterface, emitter)} to
75 * {@code mbeanInterface}, with the given implementation and
95 * @param mbeanInterface a Standard MBean interface.
98 * @throws IllegalArgumentException if the {@code mbeanInterface}
103 public <T> StandardEmitterMBean(T implementation, Class<T> mbeanInterface, argument
105 this(implementation, mbeanInterface, false, emitter);
110 * {@code mbeanInterface}, with the given implementation and where
133 * @param mbeanInterface a Standard MBean interface.
134 * @param isMXBean If true, the {@code mbeanInterface} parameter
138 * @throws IllegalArgumentException if the {@code mbeanInterface}
143 StandardEmitterMBean(T implementation, Class<T> mbeanInterface, boolean isMXBean, NotificationEmitter emitter) argument
189 StandardEmitterMBean(Class<?> mbeanInterface, NotificationEmitter emitter) argument
228 StandardEmitterMBean(Class<?> mbeanInterface, boolean isMXBean, NotificationEmitter emitter) argument
[all...]
H A DStandardMBean.java143 * specified <var>mbeanInterface</var> class.
147 * @param mbeanInterface The Management Interface exported by this
159 private <T> void construct(T implementation, Class<T> mbeanInterface, argument
164 // Have to use (T)this rather than mbeanInterface.cast(this)
165 // because mbeanInterface might be null.
171 if (mbeanInterface == null) {
172 mbeanInterface = Util.cast(Introspector.getMXBeanInterface(
175 this.mbean = new MXBeanSupport(implementation, mbeanInterface);
177 if (mbeanInterface == null) {
178 mbeanInterface
210 StandardMBean(T implementation, Class<T> mbeanInterface) argument
230 StandardMBean(Class<?> mbeanInterface) argument
266 StandardMBean(T implementation, Class<T> mbeanInterface, boolean isMXBean) argument
298 StandardMBean(Class<?> mbeanInterface, boolean isMXBean) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DPerInterface.java49 PerInterface(Class<?> mbeanInterface, MBeanIntrospector<M> introspector, argument
51 this.mbeanInterface = mbeanInterface;
58 return mbeanInterface;
274 private final Class<?> mbeanInterface; field in class:PerInterface
H A DMXBeanIntrospector.java72 MBeanAnalyzer<ConvertingMethod> getAnalyzer(Class<?> mbeanInterface) argument
74 return MBeanAnalyzer.analyzer(mbeanInterface, this);
H A DStandardMBeanIntrospector.java65 MBeanAnalyzer<Method> getAnalyzer(Class<?> mbeanInterface) argument
67 return MBeanAnalyzer.analyzer(mbeanInterface, this);
H A DIntrospector.java245 * @param mbeanInterface the MBean interface that the class implements,
254 Class<?> mbeanInterface)
256 if (mbeanInterface == null)
257 mbeanInterface = getStandardMBeanInterface(baseClass);
258 ReflectUtil.checkPackageAccess(mbeanInterface);
260 return getClassMBeanInfo(introspector, baseClass, mbeanInterface);
265 Class<?> baseClass, Class<?> mbeanInterface)
267 PerInterface<M> perInterface = introspector.getPerInterface(mbeanInterface);
306 Class<? super T> mbeanInterface = null;
308 mbeanInterface
253 testCompliance(final Class<?> baseClass, Class<?> mbeanInterface) argument
264 getClassMBeanInfo(MBeanIntrospector<M> introspector, Class<?> baseClass, Class<?> mbeanInterface) argument
[all...]
H A DMBeanIntrospector.java88 abstract MBeanAnalyzer<M> getAnalyzer(Class<?> mbeanInterface) argument
184 final PerInterface<M> getPerInterface(Class<?> mbeanInterface) argument
188 WeakReference<PerInterface<M>> wr = map.get(mbeanInterface);
192 MBeanAnalyzer<M> analyzer = getAnalyzer(mbeanInterface);
194 makeInterfaceMBeanInfo(mbeanInterface, analyzer);
195 pi = new PerInterface<M>(mbeanInterface, this, analyzer,
198 map.put(mbeanInterface, wr);
200 throw Introspector.throwException(mbeanInterface,x);
215 private MBeanInfo makeInterfaceMBeanInfo(Class<?> mbeanInterface, argument
221 return maker.makeMBeanInfo(mbeanInterface, descriptio
339 makeMBeanInfo(Class<?> mbeanInterface, String description) argument
[all...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DOldMBeanServerTest.java1025 Class<?> intf = mbeanInterface(std.getClass());
1038 private static Class<?> mbeanInterface(Class<?> c) method in class:OldMBeanServerTest.OldMBeanServer.StandardWrapper

Completed in 78 milliseconds