home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Java / JDesignerPro / Jdp3_0.exe / data1.cab / Program_Files / JDPMain.jar / JDPProcessThread.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-26  |  589 b   |  21 lines

  1. class JDPProcessThread implements Runnable {
  2.    JDPUser user;
  3.    int processID;
  4.  
  5.    JDPProcessThread(JDPUser var1, int var2) {
  6.       this.user = var1;
  7.       this.processID = var2;
  8.    }
  9.  
  10.    public void run() {
  11.       switch (this.processID) {
  12.          case 1:
  13.             if (this.user.processStatus[this.processID] == 0) {
  14.                this.user.aboutBox = new JDPAboutBox(this.user, "About JDesignerPro");
  15.             }
  16.          default:
  17.             this.user.processStatus[this.processID] = 0;
  18.       }
  19.    }
  20. }
  21.