|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use ThreadGroup | |
| java.lang | |
| Uses of ThreadGroup in java.lang |
| Methods in java.lang that return ThreadGroup | |
ThreadGroup |
ThreadGroup.getParent()
Returns the parent of this thread group. |
ThreadGroup |
Thread.getThreadGroup()
Returns the thread group to which this thread belongs. |
| Constructors in java.lang with parameters of type ThreadGroup | |
ThreadGroup(ThreadGroup parent,
java.lang.String name)
Creates a new thread group. |
|
Thread(ThreadGroup group,
Runnable target)
Allocates a new Thread object. |
|
Thread(ThreadGroup group,
java.lang.String name)
Allocates a new Thread object. |
|
Thread(ThreadGroup group,
Runnable target,
java.lang.String name)
Allocates a new Thread object so that it has
target as its run object, has the specified
name as its name, and belongs to the thread group
referred to by group.
|
|
Thread(ThreadGroup group,
Runnable target,
java.lang.String name,
long stackSize)
Allocates a new Thread object so that it has
target as its run object, has the specified
name as its name, belongs to the thread group referred to
by group, and has the specified stack size.
|
|
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||