| java.lang.Object java.lang.ThreadGroup sun.applet.AppletThreadGroup
AppletThreadGroup | public class AppletThreadGroup extends ThreadGroup (Code) | | This class defines an applet thread group.
version: 1.11, 08/19/02 author: Arthur van Hoff |
AppletThreadGroup | public AppletThreadGroup(String name)(Code) | | Constructs a new thread group for an applet.
The parent of this new group is the thread
group of the currently running thread.
Parameters: name - the name of the new thread group. |
AppletThreadGroup | public AppletThreadGroup(ThreadGroup parent, String name)(Code) | | Creates a new thread group for an applet.
The parent of this new group is the specified
thread group.
Parameters: parent - the parent thread group. Parameters: name - the name of the new thread group. exception: NullPointerException - if the thread group argument isnull . exception: SecurityException - if the current thread cannot create athread in the specified thread group. See Also: java.lang.SecurityException since: JDK1.1.1 |
|
|