home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / misc / Launcher$3.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  766 b   |  26 lines

  1. package sun.misc;
  2.  
  3. import java.io.File;
  4. import java.net.URL;
  5. import java.security.PrivilegedAction;
  6.  
  7. class Launcher$3 implements PrivilegedAction {
  8.    // $FF: synthetic field
  9.    private final String val$s;
  10.    // $FF: synthetic field
  11.    private final File[] val$path;
  12.    // $FF: synthetic field
  13.    private final ClassLoader val$extcl;
  14.  
  15.    Launcher$3(String var1, File[] var2, ClassLoader var3) {
  16.       this.val$s = var1;
  17.       this.val$path = var2;
  18.       this.val$extcl = var3;
  19.    }
  20.  
  21.    public Object run() {
  22.       URL[] var1 = this.val$s == null ? new URL[0] : Launcher.access$300(this.val$path);
  23.       return new Launcher.AppClassLoader(var1, this.val$extcl);
  24.    }
  25. }
  26.