class Counter extends Thread { /* This class simply runs a thread to count to 50 */ public int count = 1; public void run() { while (count < 50) { try { sleep(1000); } catch (InterruptedException e) { } count++; } stop(); } }