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 interface Runnable {
 // Public Instance Methods public abstract void run();
}

Implemented By:

Thread

Passed To:

Thread()