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 / java / beans / beancontext / BeanContextServiceRevokedEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  907 b   |  29 lines

  1. package java.beans.beancontext;
  2.  
  3. public class BeanContextServiceRevokedEvent extends BeanContextEvent {
  4.    protected Class serviceClass;
  5.    private boolean invalidateRefs;
  6.  
  7.    public BeanContextServiceRevokedEvent(BeanContextServices var1, Class var2, boolean var3) {
  8.       super(var1);
  9.       this.serviceClass = var2;
  10.       this.invalidateRefs = var3;
  11.    }
  12.  
  13.    public BeanContextServices getSourceAsBeanContextServices() {
  14.       return (BeanContextServices)((BeanContextEvent)this).getBeanContext();
  15.    }
  16.  
  17.    public Class getServiceClass() {
  18.       return this.serviceClass;
  19.    }
  20.  
  21.    public boolean isServiceClass(Class var1) {
  22.       return this.serviceClass.equals(var1);
  23.    }
  24.  
  25.    public boolean isCurrentServiceInvalidNow() {
  26.       return this.invalidateRefs;
  27.    }
  28. }
  29.