Java tutorial
//package com.java2s; //License from project: Apache License public class Main { public static ThreadGroup getRootThreadGroup() { ThreadGroup threadGroup = Thread.currentThread().getThreadGroup(); while (null != threadGroup.getParent()) { threadGroup = threadGroup.getParent(); } return threadGroup; } }