> How do you get hold of threads in a threadgroup? list() just prints them out
Directly from the JavaDocs:
int enumerate(Thread[] list, boolean recurse)
Copies into the specified array every active thread in this thread group [...]
/gordon
--
> How do you get hold of threads in a threadgroup? list() just prints them
> out
See the API docs of class ThreadGroup. Look for "enumerate".

Signature
Thomas