home *** CD-ROM | disk | FTP | other *** search
- class JDPProcessThread implements Runnable {
- JDPUser user;
- int processID;
-
- JDPProcessThread(JDPUser var1, int var2) {
- this.user = var1;
- this.processID = var2;
- }
-
- public void run() {
- switch (this.processID) {
- case 1:
- if (this.user.processStatus[this.processID] == 0) {
- this.user.aboutBox = new JDPAboutBox(this.user, "About JDesignerPro");
- }
- default:
- this.user.processStatus[this.processID] = 0;
- }
- }
- }
-