Use is subject to License Terms. Your use of this web site or any of its contents or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. and Motorola, Inc. All rights reserved.

MID Profile

Uses of Interface
java.lang.Runnable

Packages that use Runnable
java.lang Provides classes that are fundamental to the Java programming language. 
java.util Contains the collection classes, and the date and time facilities. 
javax.microedition.lcdui The UI API provides a set of features for implementation of user interfaces for MIDP applications. 
 

Uses of Runnable in java.lang
 

Classes in java.lang that implement Runnable
 class Thread
          A thread is a thread of execution in a program.
 

Constructors in java.lang with parameters of type Runnable
Thread(Runnable target)
          Allocates a new Thread object with a specific target object whose run method is called.
Thread(Runnable target, String name)
          Allocates a new Thread object with the given target and name.
 

Uses of Runnable in java.util
 

Classes in java.util that implement Runnable
 class TimerTask
          A task that can be scheduled for one-time or repeated execution by a Timer.
 

Uses of Runnable in javax.microedition.lcdui
 

Methods in javax.microedition.lcdui with parameters of type Runnable
 void Display.callSerially(Runnable r)
          Causes the Runnable object r to have its run() method called later, serialized with the event stream, soon after completion of the repaint cycle.
 


MID Profile

Copyright © 2006 Sun Microsystems, Inc. and Motorola, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 118 specification.