|
Java Platform 1.2 Beta 4 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Runnable | |
com.sun.java.swing | Provides a set of "lightweight" (all-Java |
com.sun.java.swing.text | Provides classes and interfaces that deal with editable and noneditable text components. |
java.awt | Contains all of the classes for creating user interfaces and for painting graphics and images. |
java.awt.event | Provides interfaces and classes for dealing with different types of events fired by AWT components. |
java.awt.image.renderable | Provides classes and interfaces for producing rendering-independent images. |
java.lang | Provides classes that are fundamental to the design of the Java programming language. |
Uses of Runnable in com.sun.java.swing |
Methods in com.sun.java.swing with parameters of type Runnable | |
static void | SwingUtilities.invokeLater(Runnable doRun)
Causes doRun.run() to be executed asynchronously on the AWT event dispatching thread. |
static void | SwingUtilities.invokeAndWait(Runnable doRun)
Causes doRun.run() to be executed synchronously on the AWT event dispatching thread. |
Uses of Runnable in com.sun.java.swing.text |
Methods in com.sun.java.swing.text with parameters of type Runnable | |
void | Document.render(Runnable r)
This allows the model to be safely rendered in the presence of currency, if the model supports being updated asynchronously. |
void | AbstractDocument.render(Runnable r)
This allows the model to be safely rendered in the presence of currency, if the model supports being updated asynchronously. |
Uses of Runnable in java.awt |
Methods in java.awt with parameters of type Runnable | |
static void | EventQueue.invokeLater(Runnable runnable)
Causes runnable to have its run() method called in the dispatch thread of the EventQueue. |
static void | EventQueue.invokeAndWait(Runnable runnable)
Causes runnable to have its run() method called in the dispatch thread of the EventQueue. |
Uses of Runnable in java.awt.event |
Fields in java.awt.event declared as Runnable | |
protected Runnable | InvocationEvent.runnable
The Runnable whose run() method will be called. |
Constructors in java.awt.event with parameters of type Runnable | |
InvocationEvent.InvocationEvent(Object source,
Runnable runnable)
Constructs an InvocationEvent with the specified source which will execute the runnable's run() method when dispatched. |
|
InvocationEvent.InvocationEvent(Object source,
Runnable runnable,
Object notifier,
boolean catchExceptions)
Constructs an InvocationEvent with the specified source which will execute the runnable's run() method when dispatched. |
|
InvocationEvent.InvocationEvent(Object source,
int id,
Runnable runnable,
Object notifier,
boolean catchExceptions)
Constructs an InvocationEvent with the specified source and ID which will execute the runnable's run() method when dispatched.
|
Uses of Runnable in java.awt.image.renderable |
Classes in java.awt.image.renderable that implement Runnable | |
RenderableImageProducer
An adapter class that implements ImageProducer to allow the asynchronous production of a RenderableImage. |
Uses of Runnable in java.lang |
Classes in java.lang that implement Runnable | |
Thread
A thread is a thread of execution in a program. |
Constructors in java.lang with parameters of type Runnable | |
Thread.Thread(Runnable target)
Allocates a new Thread object. |
|
Thread.Thread(ThreadGroup group,
Runnable target)
Allocates a new Thread object. |
|
Thread.Thread(Runnable target,
String name)
Allocates a new Thread object. |
|
Thread.Thread(ThreadGroup group,
Runnable target,
String name)
Allocates a new Thread object so that it has
target as its run object, has the specified
name as its name, and belongs to the thread group
referred to by group .
|
|
Java Platform 1.2 Beta 4 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |