java.lang
Interface Runnable

All Known Implementing Classes:
Bufferer, org.erights.e.elib.prim.tests.JARTestE.calltest, javax.swing.text.DefaultStyledDocument.ChangeUpdateRunnable, javax.swing.text.AsyncBoxView.ChildState, javax.swing.SystemEventQueueUtilities.ComponentWorkRequest, ConsoleThread, DataCommThunk, javax.swing.Timer.DoPostEvent, javax.swing.text.JTextComponent.DoSetCaretPosition, Ejector, javax.swing.text.AsyncBoxView.FlushTask, HeadlessRunner, PendingEvent, org.eclipse.swt.custom.StyledText.Printing, Retainer, javax.swing.text.DefaultCaret.SafeScroller, org.erights.e.elib.prim.tests.JARTestE.sendtest, SWTRunner, Thread, Timeout, TimerQueue, javax.swing.SystemEventQueueUtilities.TimerQueueRestart, TimerTask, org.erights.e.elib.vat.Vat.VatRedirector, Vine, java.awt.Dialog.WakingRunnable, WeakKey, WeakValue

public interface Runnable

Safe:


Method Summary
 void run()
          Enabled: When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.
 

Method Detail

run

public void run()
Enabled: When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.

The general contract of the method run is that it may take any action whatsoever.

See Also:
java.lang.Thread#run()


comments?