home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2003 January / maximum-cd-2003-01.iso / Software / Apps / OperawithJava / ow32enen700b1j.exe / OPERA.JAR / opera / AppContextCreator.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-11-07  |  685 b   |  20 lines

  1. package opera;
  2.  
  3. class AppContextCreator extends Thread {
  4.    Object syncObject = new Object();
  5.    AppContextAdapter appContext = null;
  6.  
  7.    AppContextCreator(ThreadGroup var1) {
  8.       super(var1, "AppContextCreator");
  9.    }
  10.  
  11.    public void run() {
  12.       Object var1 = this.syncObject;
  13.       synchronized(var1) {
  14.          this.appContext = new AppContextAdapter();
  15.          this.appContext.create();
  16.          this.syncObject.notifyAll();
  17.       }
  18.    }
  19. }
  20.