55,55d54 < //private transient Thread fSleeper; 104,118d102 < /* < * Gets the iconkit to be used in the applet. < */ < < /**** not sure whether this will still be needed on 1.1 enabled browsers < protected Iconkit iconkit() { < if (fIconkit == null) { < < startSleeper(); < loadAllImages(this); // blocks until images loaded < stopSleeper(); < } < return fIconkit; < } */ < 589,594d572 < /** < * *** netscape browser work around *** < */ < /*private void startSleeper() { < if (fSleeper == null) { < fSleeper = new SleeperThread(this); 596,628d573 < fSleeper.start(); < }*/ < < /*private void stopSleeper() { < if (fSleeper != null) { < fSleeper.stop(); < } < }*/ < } < < < class SleeperThread extends Thread { < < JApplet fApplet; < < SleeperThread(JApplet applet) { < fApplet = applet; < } < < public void run() { < try { < for (;;) { < fApplet.showStatus("loading icons..."); < sleep(50); < } < } < catch (InterruptedException e) { < return; < } < } < < } <