home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / beans / BeansAppletStub.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  1.1 KB  |  45 lines

  1. package java.beans;
  2.  
  3. import java.applet.Applet;
  4. import java.applet.AppletContext;
  5. import java.applet.AppletStub;
  6. import java.net.URL;
  7.  
  8. class BeansAppletStub implements AppletStub {
  9.    transient boolean active;
  10.    transient Applet target;
  11.    transient AppletContext context;
  12.    transient URL codeBase;
  13.    transient URL docBase;
  14.  
  15.    BeansAppletStub(Applet var1, AppletContext var2, URL var3, URL var4) {
  16.       this.target = var1;
  17.       this.context = var2;
  18.       this.codeBase = var3;
  19.       this.docBase = var4;
  20.    }
  21.  
  22.    public boolean isActive() {
  23.       return this.active;
  24.    }
  25.  
  26.    public URL getDocumentBase() {
  27.       return this.docBase;
  28.    }
  29.  
  30.    public URL getCodeBase() {
  31.       return this.codeBase;
  32.    }
  33.  
  34.    public String getParameter(String var1) {
  35.       return null;
  36.    }
  37.  
  38.    public AppletContext getAppletContext() {
  39.       return this.context;
  40.    }
  41.  
  42.    public void appletResize(int var1, int var2) {
  43.    }
  44. }
  45.