Searched refs:notifInfo (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/
H A DMemoryManagerImpl.java81 private MBeanNotificationInfo[] notifInfo = null; field in class:MemoryManagerImpl
84 if(notifInfo == null) {
85 notifInfo = new MBeanNotificationInfo[0];
88 return notifInfo;
H A DMemoryImpl.java118 private MBeanNotificationInfo[] notifInfo = null; field in class:MemoryImpl
121 if (notifInfo == null) {
122 notifInfo = new MBeanNotificationInfo[1];
123 notifInfo[0] = new MBeanNotificationInfo(notifTypes,
128 return notifInfo;
H A DGarbageCollectorImpl.java108 private MBeanNotificationInfo[] notifInfo = null; field in class:GarbageCollectorImpl
111 if (notifInfo == null) {
112 notifInfo = new MBeanNotificationInfo[1];
113 notifInfo[0] = new MBeanNotificationInfo(gcNotifTypes,
118 return notifInfo;
/openjdk7/jdk/src/share/classes/javax/management/
H A DNotificationBroadcasterSupport.java156 notifInfo = info == null ? NO_NOTIFICATION_INFO : info.clone();
211 if (notifInfo.length == 0)
212 return notifInfo;
214 return notifInfo.clone();
319 private final MBeanNotificationInfo[] notifInfo; field in class:NotificationBroadcasterSupport
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java781 MBeanNotificationInfo[] notifInfo = info.getNotifications();
782 if ((notifInfo != null) && (notifInfo.length>0)) {
783 for (int i=0; i<notifInfo.length; i++) {
785 (ModelMBeanNotificationInfo)notifInfo[i];

Completed in 38 milliseconds