Searched defs:notifTypes (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanNotificationInfo.java78 * @param notifTypes The array of strings (in dot notation)
85 public MBeanNotificationInfo(String[] notifTypes, argument
88 this(notifTypes, name, description, null);
94 * @param notifTypes The array of strings (in dot notation)
105 public MBeanNotificationInfo(String[] notifTypes, argument
111 /* We do not validate the notifTypes, since the spec just says
117 if (notifTypes == null)
118 notifTypes = NO_TYPES;
119 this.types = notifTypes;
169 "notifTypes
[all...]
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanNotificationInfo.java164 * @param notifTypes The array of strings (in dot notation) containing
170 public ModelMBeanNotificationInfo(String[] notifTypes, argument
173 this(notifTypes,name,description,null);
179 * @param notifTypes The array of strings (in dot notation)
197 public ModelMBeanNotificationInfo(String[] notifTypes, argument
201 super(notifTypes, name, description);
/openjdk7/jdk/src/share/classes/sun/management/
H A DMemoryImpl.java109 private final static String[] notifTypes = { field in class:MemoryImpl
123 notifInfo[0] = new MBeanNotificationInfo(notifTypes,
132 for (int i = 0; i < notifTypes.length; i++) {
133 if (notifType == notifTypes[i]) {

Completed in 29 milliseconds