Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.lang.Thread.UncaughtExceptionHandler

Uses of Thread.UncaughtExceptionHandler in java.lang
 

Classes in java.lang that implement Thread.UncaughtExceptionHandler
 class ThreadGroup
          ThreadGroup allows you to group Threads together.
 

Fields in java.lang declared as Thread.UncaughtExceptionHandler
private static Thread.UncaughtExceptionHandler Thread.defaultHandler
          The default exception handler.
(package private)  Thread.UncaughtExceptionHandler Thread.exceptionHandler
          The uncaught exception handler.
 

Methods in java.lang that return Thread.UncaughtExceptionHandler
 Thread.UncaughtExceptionHandler Thread.getUncaughtExceptionHandler()
           Returns the handler used when this thread terminates due to an uncaught exception.
static Thread.UncaughtExceptionHandler Thread.getDefaultUncaughtExceptionHandler()
          Returns the handler used by default when a thread terminates unexpectedly due to an exception, or null if one doesn't exist.
 

Methods in java.lang with parameters of type Thread.UncaughtExceptionHandler
 void Thread.setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler h)
          Assigns the given UncaughtExceptionHandler to this thread.
static void Thread.setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler h)
           Sets the default uncaught exception handler used when one isn't provided by the thread or its associated ThreadGroup.