java.lang.Runnable (JDK 1.0)
This interface specifies the run() method that is required for use with the Thread class. Any class that implements this interface can provide the "body" of a thread. See Thread for more information.
public abstract interfaceRunnable{ //Public Instance Methodspublic abstract voidrun(); }
Implemented By:
Thread
Passed To:
Thread()