public class

ThreadGroupReferenceImpl

extends ObjectReferenceImpl
implements ThreadGroupReference EventListener
java.lang.Object
   ↳ com.sun.tools.jdi.ObjectReferenceImpl
     ↳ com.sun.tools.jdi.ThreadGroupReferenceImpl

Summary

[Expand]
Inherited Constants
From interface com.sun.jdi.ObjectReference
[Expand]
Inherited Fields
From class com.sun.tools.jdi.ObjectReferenceImpl
Public Methods
String name()
Returns the name of this thread group.
ThreadGroupReference parent()
Returns the parent of this thread group.
void resume()
Resumes all threads in this thread group.
void suspend()
Suspends all threads in this thread group.
List<ThreadGroupReference> threadGroups()
Returns a List containing each active ThreadGroupReference in this thread group.
List<ThreadReference> threads()
Returns a List containing a ThreadReference for each live thread in this thread group.
String toString()
Returns a string representation of the object.
abstract boolean vmNotSuspended(VMAction action)
abstract boolean vmSuspended(VMAction action)
Protected Methods
String description()
ObjectReferenceImpl.Cache newCache()
[Expand]
Inherited Methods
From class com.sun.tools.jdi.ObjectReferenceImpl
From class java.lang.Object
From interface com.sun.jdi.Mirror
From interface com.sun.jdi.ObjectReference
From interface com.sun.jdi.ThreadGroupReference
From interface com.sun.jdi.Value

Public Methods

public String name ()

Returns the name of this thread group.

Returns
  • the string containing the thread group name.

public ThreadGroupReference parent ()

Returns the parent of this thread group.

Returns
  • a ThreadGroupReference mirroring the parent of this thread group in the target VM, or null if this is a top-level thread group.

public void resume ()

Resumes all threads in this thread group. Each thread in this group and in all of its subgroups will be resumed as described in resume().

public void suspend ()

Suspends all threads in this thread group. Each thread in this group and in all of its subgroups will be suspended as described in suspend(). This is not guaranteed to be an atomic operation; if the target VM is not interrupted at the time this method is called, it is possible that new threads will be created between the time that threads are enumerated and all of them have been suspended.

public List<ThreadGroupReference> threadGroups ()

Returns a List containing each active ThreadGroupReference in this thread group. Only the active thread groups in this immediate thread group (and not its subgroups) are returned. See java.lang.ThreadGroup for information about 'active' ThreadGroups.

Returns
  • a List of ThreadGroupReference objects mirroring the active thread groups from this thread group in the target VM.

public List<ThreadReference> threads ()

Returns a List containing a ThreadReference for each live thread in this thread group. Only the live threads in this immediate thread group (and not its subgroups) are returned. A thread is alive if it has been started and has not yet been stopped.

Returns
  • a List of ThreadReference objects mirroring the live threads from this thread group in the target VM.

public String toString ()

Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
  • a string representation of the object.

public abstract boolean vmNotSuspended (VMAction action)

public abstract boolean vmSuspended (VMAction action)

Protected Methods

protected String description ()

protected ObjectReferenceImpl.Cache newCache ()