public class

AppletThreadGroup

extends ThreadGroup
java.lang.Object
   ↳ java.lang.ThreadGroup
     ↳ sun.applet.AppletThreadGroup

Class Overview

This class defines an applet thread group.

Summary

Public Constructors
AppletThreadGroup(String name)
Constructs a new thread group for an applet.
AppletThreadGroup(ThreadGroup parent, String name)
Creates a new thread group for an applet.
[Expand]
Inherited Methods
From class java.lang.ThreadGroup
From class java.lang.Object
From interface java.lang.Thread.UncaughtExceptionHandler

Public Constructors

public AppletThreadGroup (String name)

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.

public AppletThreadGroup (ThreadGroup parent, String name)

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.
name the name of the new thread group.
Throws
NullPointerException if the thread group argument is null.
SecurityException if the current thread cannot create a thread in the specified thread group.