Class work
java.lang.Object
|
+----java.lang.Thread
|
+----work
- public class work
- extends Thread
A thread class which calls repaint() to display the image in different positions
-
run()
- Called by the start method to execute the
run method in a separate thread of execution
run
public void run()
- Called by the start method to execute the
run method in a separate thread of execution
- Overrides:
- run in class Thread