summaryrefslogtreecommitdiff
path: root/javax/management/NotificationBroadcaster.java
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2006-07-16 20:18:05 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2006-07-16 20:18:05 +0000
commit1593bb3cbff698bc711347fd51d70173cc445d8a (patch)
tree2536b82427d27faeaae88e1cb27382d0c22788c1 /javax/management/NotificationBroadcaster.java
parent29e91ded7aeb476ba21467bde5f203e5ec5a3346 (diff)
downloadclasspath-generics-merge-20060716.tar.gz
2006-07-16 Andrew John Hughes <gnu_andrew@member.fsf.org>generics-merge-20060716
* javax/management/MBeanInfo.java: (getNotifications()): Implemented. * javax/management/NotificationBroadcaster.java: (removeNotificationListener(NotificationListener)): Renamed from removeListener. * javax/management/NotificationEmitter.java: (removeNotificationListener(NotificationListener, NotificationFilter, Object)): Likewise. * javax/management/NotificationFilter.java: Implement Serializable. * javax/management/NotificationListener.java: Implement java.util.EventListener. * javax/rmi/ssl/SslRMIClientSocketFactory.java: Implement Serializable.
Diffstat (limited to 'javax/management/NotificationBroadcaster.java')
-rw-r--r--javax/management/NotificationBroadcaster.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/javax/management/NotificationBroadcaster.java b/javax/management/NotificationBroadcaster.java
index 91b5f636a..139d842bb 100644
--- a/javax/management/NotificationBroadcaster.java
+++ b/javax/management/NotificationBroadcaster.java
@@ -105,7 +105,7 @@ public interface NotificationBroadcaster
* @see #addNotificationListener(NotificationListener, NotificationFilter,
* java.lang.Object)
*/
- void removeListener(NotificationListener listener)
+ void removeNotificationListener(NotificationListener listener)
throws ListenerNotFoundException;
}