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 / sun / net / ProgressEntry.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.2 KB  |  72 lines

  1. package sun.net;
  2.  
  3. public class ProgressEntry {
  4.    public static final int HTML = 0;
  5.    public static final int IMAGE = 1;
  6.    public static final int CLASS = 2;
  7.    public static final int AUDIO = 3;
  8.    public static final int OTHER = 4;
  9.    public int need = 0;
  10.    public int read = 0;
  11.    public int what;
  12.    public int index;
  13.    public boolean connected = false;
  14.    public String label;
  15.    public int type;
  16.  
  17.    public ProgressEntry(String var1, String var2) {
  18.       this.label = var1;
  19.       this.type = 4;
  20.       this.need = 0;
  21.       this.setType(var1, var2);
  22.    }
  23.  
  24.    public void setType(String var1, String var2) {
  25.       if (var2 != null) {
  26.          if (var2.startsWith("image")) {
  27.             this.type = 1;
  28.          } else if (var2.startsWith("audio")) {
  29.             this.type = 3;
  30.          } else if (var2.equals("application/java-vm")) {
  31.             this.type = 2;
  32.          } else if (var2.startsWith("text/html")) {
  33.             this.type = 0;
  34.          }
  35.       }
  36.  
  37.       if (this.type == 4) {
  38.          if (!var1.endsWith(".html") && !var1.endsWith("/") && !var1.endsWith(".htm")) {
  39.             if (var1.endsWith(".class")) {
  40.                this.type = 2;
  41.             } else if (!var1.endsWith(".gif") && !var1.endsWith(".xbm") && !var1.endsWith(".jpeg") && !var1.endsWith(".jpg") && !var1.endsWith(".jfif")) {
  42.                if (var1.endsWith(".au")) {
  43.                   this.type = 3;
  44.                }
  45.             } else {
  46.                this.type = 1;
  47.             }
  48.          } else {
  49.             this.type = 0;
  50.          }
  51.       }
  52.  
  53.    }
  54.  
  55.    public void update(int var1, int var2) {
  56.       if (this.need == 0) {
  57.          this.need = var2;
  58.       }
  59.  
  60.       this.read = var1;
  61.    }
  62.  
  63.    public synchronized boolean connected() {
  64.       if (!this.connected) {
  65.          this.connected = true;
  66.          return false;
  67.       } else {
  68.          return true;
  69.       }
  70.    }
  71. }
  72.