java.lang
Interface Runnable

All Known Implementing Classes:
Thread

public interface Runnable

The runnable interface must be implemented by all classes which want to be run as threads.

See Also:
Thread

Method Summary
 void run()
          Begin doing the active part of the class' code.
 

Method Detail

run

public void run()
Begin doing the active part of the class' code.