|
Java Platform 1.2 Beta 4 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InterruptedException | |
com.sun.java.swing | Provides a set of "lightweight" (all-Java |
java.awt | Contains all of the classes for creating user interfaces and for painting graphics and images. |
java.awt.image | Provides classes for creating and modifying images. |
java.lang | Provides classes that are fundamental to the design of the Java programming language. |
java.lang.ref | Provides reference object classes, which allow a program to interact with the garbage collector. |
Uses of InterruptedException in com.sun.java.swing |
Methods in com.sun.java.swing that throw InterruptedException | |
static void | SwingUtilities.invokeAndWait(Runnable doRun)
Causes doRun.run() to be executed synchronously on the AWT event dispatching thread. |
Uses of InterruptedException in java.awt |
Methods in java.awt that throw InterruptedException | |
void | MediaTracker.waitForAll()
Starts loading all images tracked by this media tracker. |
boolean | MediaTracker.waitForAll(long ms)
Starts loading all images tracked by this media tracker. |
void | MediaTracker.waitForID(int id)
Starts loading all images tracked by this media tracker with the specified identifier. |
boolean | MediaTracker.waitForID(int id,
long ms)
Starts loading all images tracked by this media tracker with the specified identifier. |
AWTEvent | EventQueue.getNextEvent()
Remove an event from the queue and return it. |
static void | EventQueue.invokeAndWait(Runnable runnable)
Causes runnable to have its run() method called in the dispatch thread of the EventQueue. |
Uses of InterruptedException in java.awt.image |
Methods in java.awt.image that throw InterruptedException | |
boolean | PixelGrabber.grabPixels()
Request the Image or ImageProducer to start delivering pixels and wait for all of the pixels in the rectangle of interest to be delivered. |
boolean | PixelGrabber.grabPixels(long ms)
Request the Image or ImageProducer to start delivering pixels and wait for all of the pixels in the rectangle of interest to be delivered or until the specified timeout has elapsed. |
Uses of InterruptedException in java.lang |
Methods in java.lang that throw InterruptedException | |
void | Object.wait(long timeout)
Waits to be notified by another thread of a change in this object. |
void | Object.wait(long timeout,
int nanos)
Waits to be notified by another thread of a change in this object. |
void | Object.wait()
Waits to be notified by another thread of a change in this object. |
static void | Thread.sleep(long millis)
Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds. |
static void | Thread.sleep(long millis,
int nanos)
Causes the currently executing thread to sleep (cease execution) for the specified number of milliseconds plus the specified number of nanoseconds. |
void | Thread.join(long millis)
Waits at most millis milliseconds for this thread to
die. |
void | Thread.join(long millis,
int nanos)
Waits at most millis milliseconds plus
nanos nanoseconds for this thread to die. |
void | Thread.join()
Waits for this thread to die. |
abstract int | Process.waitFor()
Waits for the subprocess to complete. |
Uses of InterruptedException in java.lang.ref |
Methods in java.lang.ref that throw InterruptedException | |
Reference | ReferenceQueue.remove(long timeout)
Remove the next reference object in this queue, blocking until either one becomes available or the given timeout period expires. |
Reference | ReferenceQueue.remove()
Remove the next reference object in this queue, blocking until one becomes available. |
|
Java Platform 1.2 Beta 4 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |