2010 FRC Java API


Uses of Interface
java.lang.Runnable

Packages that use Runnable
com.sun.spot.ota   
com.sun.squawk Provides classes for low level interactions with the Squawk VM. 
com.sun.squawk.io.j2me.pipe   
java.lang MID Profile Language Classes included from Java 2 Standard Edition. 
java.util Contains the collection classes, and the date and time facilities. 
tests   
 

Uses of Runnable in com.sun.spot.ota
 

Classes in com.sun.spot.ota that implement Runnable
 class OtaCommandListener
           
 class OtaCommandServerSocketListener
           
 class ServerSocketListener
           
 

Methods in com.sun.spot.ota that return Runnable
abstract  Runnable ServerSocketListener.newRunnable(StreamConnection connection)
           
 Runnable OtaCommandServerSocketListener.newRunnable(StreamConnection connection)
           
 

Uses of Runnable in com.sun.squawk
 

Classes in com.sun.squawk that implement Runnable
 class Isolate
          The Isolate class represents a "process-like" unit of computation that is isolated from other instances of Isolate.
 

Methods in com.sun.squawk with parameters of type Runnable
static void VM.addShutdownHook(Isolate iso, Runnable hook)
          Registers a new virtual-machine shutdown hook.
static boolean VM.removeShutdownHook(Isolate iso, Runnable hook)
          De-registers a previously-registered virtual-machine shutdown hook.
 

Uses of Runnable in com.sun.squawk.io.j2me.pipe
 

Classes in com.sun.squawk.io.j2me.pipe that implement Runnable
 class PipeServerSocketListener
           
 

Methods in com.sun.squawk.io.j2me.pipe that return Runnable
 Runnable PipeServerSocketListener.newRunnable(StreamConnection connection)
           
 

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 tests
 

Classes in tests that implement Runnable
 class TestApp2
           
 


2010 FRC Java API


Copyright © 2006-2009 Sun Microsystems, Inc. All Rights Reserved.