FileDocCategorySizeDatePackage
StopBoolean.javaAPI DocExample351Sat Nov 25 12:49:08 GMT 2000None

StopBoolean

public class StopBoolean extends Thread

Fields Summary
protected boolean
done
Constructors Summary
Methods Summary
public voidrun()

	   
		while (!done) {
			System.out.println("StopBoolean running");
			try {
				sleep(720);
			} catch (InterruptedException ex) {
				// nothing to do 
			}
		}
		System.out.println("StopBoolean finished.");
	
public voidshutDown()

		done = true;