home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / naming / ldap / UnsolicitedNotificationEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  735 b   |  22 lines

  1. package javax.naming.ldap;
  2.  
  3. import java.util.EventObject;
  4.  
  5. public class UnsolicitedNotificationEvent extends EventObject {
  6.    private UnsolicitedNotification notice;
  7.    private static final long serialVersionUID = -2382603380799883705L;
  8.  
  9.    public UnsolicitedNotificationEvent(Object var1, UnsolicitedNotification var2) {
  10.       super(var1);
  11.       this.notice = var2;
  12.    }
  13.  
  14.    public UnsolicitedNotification getNotification() {
  15.       return this.notice;
  16.    }
  17.  
  18.    public void dispatch(UnsolicitedNotificationListener var1) {
  19.       var1.notificationReceived(this);
  20.    }
  21. }
  22.