FileDocCategorySizeDatePackage
Mover2.javaAPI DocExample2695Sun Feb 08 21:34:08 GMT 2004None

Mover2

public class Mover2 extends Mover
Extend Mover by adding the ability to start multi threads.

Fields Summary
Constructors Summary
Methods Summary
public voidinit()

		super.init();
		Button bx = new Button("Another");
		bx.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent evt) {
				startThread();
			}
		});
		add(bx);