Searched refs:mbi (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DStandardMBeanSupport.java85 MBeanInfo mbi = super.getMBeanInfo();
88 return mbi;
89 return new MBeanInfo(mbi.getClassName(), mbi.getDescription(),
90 mbi.getAttributes(), mbi.getConstructors(),
91 mbi.getOperations(),
93 mbi.getDescriptor());
H A DMBeanIntrospector.java391 MBeanInfo mbi =
395 return mbi;
397 return new MBeanInfo(mbi.getClassName(),
398 mbi.getDescription(),
399 mbi.getAttributes(),
400 mbi.getConstructors(),
401 mbi.getOperations(),
403 mbi.getDescriptor());
424 MBeanInfo mbi = intfMap.get(intfClass);
425 if (mbi
[all...]
/openjdk7/jdk/test/javax/management/mxbean/
H A DOperationImpactTest.java50 MBeanInfo mbi = mbs.getMBeanInfo(on);
51 MBeanOperationInfo[] ops = mbi.getOperations();
53 throw new Exception("TEST FAILED: several ops: " + mbi);
H A DMBeanOperationInfoTest.java57 MBeanInfo mbi = mbs.getMBeanInfo(on);
58 MBeanOperationInfo[] ops = mbi.getOperations();
H A DMXBeanAnnotationTest.java83 private static boolean checkMXBean(MBeanInfo mbi, boolean expected, argument
85 Descriptor d = mbi.getDescriptor();
H A DTypeNameTest.java77 MBeanInfo mbi = mbs.getMBeanInfo(name);
78 MBeanAttributeInfo[] mbais = mbi.getAttributes();
H A DStandardMBeanOverrideTest.java213 MBeanInfo mbi = mbs.getMBeanInfo(on);
214 Descriptor d = mbi.getDescriptor();
H A DMiscTest.java480 MBeanInfo mbi = mbs.getMBeanInfo(on);
481 MBeanNotificationInfo mbni[] = mbi.getNotifications();
691 MBeanInfo mbi = mbs.getMBeanInfo(on);
693 Descriptor d = mbi.getDescriptor();
708 MBeanAttributeInfo attrs[] = mbi.getAttributes();
H A DMXBeanTest.java142 MBeanInfo mbi = mbs.getMBeanInfo(on);
143 MBeanAttributeInfo[] attrs = mbi.getAttributes();
145 if (mbi.getAttributes().length != 1)
281 MBeanInfo mbi = mbsc.getMBeanInfo(on);
282 MBeanAttributeInfo[] mbais = mbi.getAttributes();
300 MBeanOperationInfo[] mbois = mbi.getOperations();
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DNullInfoArraysTest.java56 MBeanInfo mbi = (MBeanInfo) ois.readObject();
59 mbi.getClass().getName() + "...");
61 if (mbi.getAttributes() == null ||
62 mbi.getOperations() == null ||
63 mbi.getConstructors() == null ||
64 mbi.getNotifications() == null)
H A DNotificationInfoTest.java189 MBeanInfo mbi = mbs.getMBeanInfo(name);
190 check(name.toString(), mbi.getNotifications());
/openjdk7/jdk/test/javax/management/Introspector/
H A DChangingNotifsTest.java76 MBeanInfo mbi = mbs.getMBeanInfo(name);
77 Descriptor d = mbi.getDescriptor();
85 MBeanNotificationInfo[] n1 = mbi.getNotifications().clone();
86 mbi = mbs.getMBeanInfo(name);
87 boolean unchanged = Arrays.deepEquals(mbi.getNotifications(), n1);
H A DIsMethodTest.java61 MBeanInfo mbi = mbs.getMBeanInfo(on);
65 MBeanAttributeInfo[] attrs = mbi.getAttributes();
77 MBeanOperationInfo[] ops = mbi.getOperations();
H A DImmutableNotificationInfoTest.java89 MBeanInfo mbi = mbs.getMBeanInfo(on);
90 Descriptor d = mbi.getDescriptor();
H A DAnnotationTest.java252 MBeanInfo mbi = mbs.getMBeanInfo(on);
255 check(mbi);
258 MBeanAttributeInfo[] attrs = mbi.getAttributes();
266 MBeanOperationInfo[] ops = mbi.getOperations();
272 MBeanConstructorInfo[] constrs = mbi.getConstructors();
H A DFeatureOrderTest.java221 MBeanInfo mbi = mbs.getMBeanInfo(name);
224 System.out.println("classname " +mbi.getClassName());
226 (String) mbi.getDescriptor().getFieldValue("mxbean");
235 MBeanAttributeInfo[] mbais = mbi.getAttributes();
244 MBeanOperationInfo[] mbois = mbi.getOperations();
/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/sun/tools/jconsole/inspector/
H A DXSheet.java213 MBeanInfo mbi = get();
214 if (mbi != null) {
218 mbeanInfo.addMBeanInfo(mbean, mbi);
245 final XMBeanInfo mbi = mbeanInfo;
294 mbi.addMBeanAttributeInfo(mbai);
295 attributePanel.add(mbi, BorderLayout.CENTER);
333 mbi.addMBeanOperationInfo(mboi);
334 operationPanel.add(mbi, BorderLayout.CENTER);
345 mbi.addMBeanNotificationInfo((MBeanNotificationInfo) notifData);
346 mainPanel.add(mbi, BorderLayou
[all...]
/openjdk7/jdk/test/java/lang/management/MXBean/
H A DMXBeanBehavior.java97 MBeanInfo mbi = mbs.getMBeanInfo(name);
98 Descriptor mbid = mbi.getDescriptor();
110 for (MBeanAttributeInfo mbai : mbi.getAttributes()) {
/openjdk7/jdk/test/java/lang/management/GarbageCollectorMXBean/
H A DGcInfoCompositeType.java60 MBeanInfo mbi = mbs.getMBeanInfo(n);
62 for (MBeanAttributeInfo mbai : mbi.getAttributes()) {
/openjdk7/jdk/test/javax/management/modelmbean/ModelMBeanInfoSupport/
H A DGetAllDescriptorsTest.java216 final MBeanInfo mbi = mbs.getMBeanInfo(on);
217 final ModelMBeanInfo model = (ModelMBeanInfo)mbi;
224 final MBeanInfo mbi = mbs.getMBeanInfo(on);
225 final ModelMBeanInfo model = (ModelMBeanInfo)mbi;
/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...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DAMXClient.java140 ModelMBeanInfo mbi = (ModelMBeanInfo) server.getMBeanInfo( oname );
141 Descriptor desc = mbi.getMBeanDescriptor() ;
/openjdk7/jdk/test/javax/management/ObjectInstance/
H A DMBeanInfoFailTest.java141 final MBeanInfo mbi = server.getMBeanInfo(troubleMaker);
142 System.err.println("No trouble started!: " + mbi);
/openjdk7/jdk/test/javax/management/MustBeValidMBeanInfo/
H A DMustBeValidCommand.java191 final MBeanInfo mbi =

Completed in 4989 milliseconds

12