Uses of Class
java.lang.Thread

Packages that use Thread
java.awt   
java.io   
java.lang   
 

Uses of Thread in java.awt
 

Subclasses of Thread in java.awt
(package private)  class EventDispatchThread
          EventDispatchThread is a package-private AWT class which takes events off the EventQueue and dispatches them to the appropriate AWT components.
 

Uses of Thread in java.io
 

Fields in java.io declared as Thread
(package private)  Thread PipedInputStream.readSide
           
(package private)  Thread PipedInputStream.writeSide
           
(package private)  Thread PipedReader.readSide
           
(package private)  Thread PipedReader.writeSide
           
 

Uses of Thread in java.lang
 

Fields in java.lang declared as Thread
private  Thread Thread.threadQ
           
(package private)  Thread[] ThreadGroup.threads
           
 

Methods in java.lang that return Thread
static Thread Thread.currentThread()
          Returns a reference to the currently executing thread object.
 

Methods in java.lang with parameters of type Thread
static int Thread.enumerate(Thread[] tarray)
          Copies into the specified array every active thread in this thread's thread group and its subgroups.
 void SecurityManager.checkAccess(Thread t)
          Throws a SecurityException if the calling thread is not allowed to modify the thread argument.
 int ThreadGroup.enumerate(Thread[] list)
          Copies into the specified array every active thread in this thread group and its subgroups.
 int ThreadGroup.enumerate(Thread[] list, boolean recurse)
          Copies into the specified array every active thread in this thread group.
private  int ThreadGroup.enumerate(Thread[] list, int n, boolean recurse)
           
(package private)  void ThreadGroup.add(Thread t)
          Adds the specified Thread to this group.
(package private)  void ThreadGroup.remove(Thread t)
          Removes the specified Thread from this group.
 void ThreadGroup.uncaughtException(Thread t, Throwable e)
          Called by the Java Virtual Machine when a thread in this thread group stops because of an uncaught exception.
(package private) static void InheritableThreadLocal.bequeath(Thread parent, Thread child)
          Passes the ThreadLocal values represented by the specified list of Entries onto the specified child Thread.
(package private)  void InheritableThreadLocal.Entry.bequeath(Thread child)
          Passes the ThreadLocal value represented by this Entry on to the specified child Thread.
 

Constructors in java.lang with parameters of type Thread
InheritableThreadLocal.Entry.InheritableThreadLocal.Entry(Object value, Thread t)
          This constructor places the newly constructed Entry on the specified thread's values list.