Method getThreadGroup()
Return type: java.lang.ThreadGroup
Member of: java.lang.Thread
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 t.getThreadGroup().uncaughtException(t, e);
2 Sandbox s = (Sandbox)groups.get(t.getThreadGroup());
3 Sandbox old2 = (Sandbox)groups.get(t.getThreadGroup());
4 t.getThreadGroup().uncaughtException(t, e);
5 ThreadGroup parent = current.getThreadGroup();
6 ThreadGroup grp = Thread.currentThread().getThreadGroup();
7 showThreadGroup (Thread.currentThread().getThreadGroup(), p, newIndent);
8 threadGroup = Thread.currentThread().getThreadGroup();
9 ThreadGroup g = Thread.currentThread().getThreadGroup ();
10 Thread.currentThread().getThreadGroup().list();
11 current_thread_group = Thread.currentThread().getThreadGroup();
12 m_trustedWorker = new Thread(currentThread.getThreadGroup(),
13 sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(new Integer(t.getPriority()), 3));
14 ThreadGroup topGroup = Thread.currentThread().getThreadGroup();
15 ThreadGroup g = Thread.currentThread().getThreadGroup();
16 ThreadGroup root = Thread.currentThread().getThreadGroup().getParent();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.