Searched refs:mxbeanInterface (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/management/
H A DManagementFactory.java498 * Proxy.newProxyInstance}<tt>(mxbeanInterface.getClassLoader(),
499 * new Class[] { mxbeanInterface }, handler)</tt>
515 * both the <tt>mxbeanInterface</tt> and <tt>NotificationEmitter</tt>
555 * @param mxbeanInterface the MXBean interface to be implemented
567 * <tt>mxbeanInterface</tt></li>
576 Class<T> mxbeanInterface)
579 final Class interfaceClass = mxbeanInterface;
607 return JMX.newMXBeanProxy(connection, objName, mxbeanInterface,
616 * the given {@code mxbeanInterface} which is specified
625 * getPlatformMXBeans(mxbeanInterface)}
574 newPlatformMXBeanProxy(MBeanServerConnection connection, String mxbeanName, Class<T> mxbeanInterface) argument
642 getPlatformMXBean(Class<T> mxbeanInterface) argument
676 getPlatformMXBeans(Class<T> mxbeanInterface) argument
719 getPlatformMXBean(MBeanServerConnection connection, Class<T> mxbeanInterface) argument
761 getPlatformMXBeans(MBeanServerConnection connection, Class<T> mxbeanInterface) argument
[all...]
H A DPlatformComponent.java374 List<T> getMXBeans(Class<T> mxbeanInterface) argument
379 <T extends PlatformManagedObject> T getSingletonMXBean(Class<T> mxbeanInterface) argument
391 T getSingletonMXBean(MBeanServerConnection mbs, Class<T> mxbeanInterface) argument
403 mxbeanInterface);
407 List<T> getMXBeans(MBeanServerConnection mbs, Class<T> mxbeanInterface) argument
415 mxbeanInterface)
456 PlatformComponent getPlatformComponent(Class<T> mxbeanInterface) argument
459 String cn = mxbeanInterface.getName();
461 if (pc != null && pc.getMXBeanInterface() == mxbeanInterface)
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DGetPlatformMXBeans.java75 void checkPlatformMXBean(T obj, Class<T> mxbeanInterface, argument
80 PlatformManagedObject mxbean = getPlatformMXBean(mxbeanInterface);
87 getPlatformMXBeans(mxbeanInterface);
104 mxbeanInterface, mxbeanName);
112 Class<T> mxbeanInterface,
116 PlatformManagedObject mxbean = getPlatformMXBean(mbs, mxbeanInterface);
123 getPlatformMXBeans(mbs, mxbeanInterface);
184 void checkPlatformMXBeans(List<T> objs, Class<T> mxbeanInterface) argument
188 getPlatformMXBean(mxbeanInterface);
189 // mxbeanInterface i
110 checkRemotePlatformMXBean(T obj, MBeanServerConnection mbs, Class<T> mxbeanInterface, String mxbeanName) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerInvocationHandler.java316 private static MXBeanProxy findMXBeanProxy(Class<?> mxbeanInterface) { argument
319 mxbeanProxies.get(mxbeanInterface);
323 p = new MXBeanProxy(mxbeanInterface);
326 mxbeanInterface.getName() + ": " + e.getMessage();
332 mxbeanProxies.put(mxbeanInterface,
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanProxy.java48 public MXBeanProxy(Class<?> mxbeanInterface) { argument
50 if (mxbeanInterface == null)
56 MXBeanIntrospector.getInstance().getAnalyzer(mxbeanInterface);
H A DMXBeanSupport.java52 @param mxbeanInterface the interface to be used to determine
56 that {@code resource} implements {@code mxbeanInterface},
57 provided that {@code mxbeanInterface} is a class constant like
61 if it does not implement the class {@code mxbeanInterface} or if
64 public <T> MXBeanSupport(T resource, Class<T> mxbeanInterface) argument
66 super(resource, mxbeanInterface);
/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanTest.java361 Class<?> mxbeanInterface = refField.getType();
363 JMX.newMXBeanProxy(mbsc, refObjName, mxbeanInterface);

Completed in 2879 milliseconds