I have a method
public static void startAnimation() {
new AnimationThread().run();
}
where AnimationThread implements runnable and its constructor is:
public AnimationThread() {
new Thread(this, "Animation Thread");
EventQueue.setAnimationCounter(0);
alive = true;
}
which i am calling from the init() method of an applet hangs as it never returns a value. Is there a way to start this thread and get the init() method to finish so that my applet will start!
Thanks
run()is like any other method, it runs in the current threads and only returns when it completes. – Peter Lawrey Dec 9 '11 at 12:23