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.

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

MID Profile

Uses of Class
java.lang.InterruptedException

Packages that use InterruptedException
java.lang MID Profile Language Classes included from Java 2 Standard Edition. 
 

Uses of InterruptedException in java.lang
 

Methods in java.lang that throw InterruptedException
 void Object.wait(long timeout)
          Causes current thread to wait until either another thread invokes the Object.notify() method or the Object.notifyAll() method for this object, or a specified amount of time has elapsed.
 void Object.wait(long timeout, int nanos)
          Causes current thread to wait until another thread invokes the Object.notify() method or the Object.notifyAll() method for this object, or some other thread interrupts the current thread, or a certain amount of real time has elapsed.
 void Object.wait()
          Causes current thread to wait until another thread invokes the Object.notify() method or the Object.notifyAll() method for this object.
static void Thread.sleep(long millis)
          Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds.
 void Thread.join()
          Waits for this thread to die.
 


MID Profile

Copyright © 2006 Sun Microsystems, 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 37 specification.