Searched defs:mbi (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanAnnotationTest.java83 private static boolean checkMXBean(MBeanInfo mbi, boolean expected, argument
85 Descriptor d = mbi.getDescriptor();
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DMethodResultTest.java280 public void cacheMBeanInfo(MBeanInfo mbi) { argument
281 if (mbi != null)
282 mbi = new ExoticMBeanInfo(mbi);
283 super.cacheMBeanInfo(mbi);
305 public ExoticMBeanInfo(MBeanInfo mbi) { argument
306 super(mbi.getClassName(),
307 mbi.getDescription(),
308 mbi.getAttributes(),
309 mbi
[all...]
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanInfoSupport.java213 * @param mbi the ModelMBeanInfo instance from which the ModelMBeanInfo
216 public ModelMBeanInfoSupport(ModelMBeanInfo mbi) { argument
217 super(mbi.getClassName(),
218 mbi.getDescription(),
219 mbi.getAttributes(),
220 mbi.getConstructors(),
221 mbi.getOperations(),
222 mbi.getNotifications());
224 modelMBeanAttributes = mbi.getAttributes();
225 modelMBeanConstructors = mbi
[all...]
H A DRequiredModelMBean.java192 * @param mbi The ModelMBeanInfo object to be used by the
202 public RequiredModelMBean(ModelMBeanInfo mbi) argument
210 setModelMBeanInfo(mbi);
244 * @param mbi The ModelMBeanInfo object to be used
257 public void setModelMBeanInfo(ModelMBeanInfo mbi) argument
266 if (mbi == null) {
300 "Setting ModelMBeanInfo to " + printModelMBeanInfo(mbi));
305 (mbi.getNotifications()).length + " elements");
308 modelMBeanInfo = (ModelMBeanInfo)mbi.clone();

Completed in 30 milliseconds