package java.lang; import org.checkerframework.dataflow.qual.Pure; import org.checkerframework.dataflow.qual.SideEffectFree; import org.checkerframework.checker.nullness.qual.Nullable; public class ThreadGroup implements Thread.UncaughtExceptionHandler { public ThreadGroup(@Nullable String a1) { throw new RuntimeException("skeleton method"); } public ThreadGroup(ThreadGroup a1, @Nullable String a2) { throw new RuntimeException("skeleton method"); } public final @Nullable String getName() { throw new RuntimeException("skeleton method"); } public final @Nullable ThreadGroup getParent() { throw new RuntimeException("skeleton method"); } public final int getMaxPriority() { throw new RuntimeException("skeleton method"); } @Pure public final boolean isDaemon() { throw new RuntimeException("skeleton method"); } @Pure public synchronized boolean isDestroyed() { throw new RuntimeException("skeleton method"); } public final void setDaemon(boolean a1) { throw new RuntimeException("skeleton method"); } public final void setMaxPriority(int a1) { throw new RuntimeException("skeleton method"); } public final boolean parentOf(ThreadGroup a1) { throw new RuntimeException("skeleton method"); } public final void checkAccess() { throw new RuntimeException("skeleton method"); } public int activeCount() { throw new RuntimeException("skeleton method"); } public int enumerate(Thread[] a1) { throw new RuntimeException("skeleton method"); } public int enumerate(Thread[] a1, boolean a2) { throw new RuntimeException("skeleton method"); } public int activeGroupCount() { throw new RuntimeException("skeleton method"); } public int enumerate(ThreadGroup[] a1) { throw new RuntimeException("skeleton method"); } public int enumerate(ThreadGroup[] a1, boolean a2) { throw new RuntimeException("skeleton method"); } public final void stop() { throw new RuntimeException("skeleton method"); } public final void interrupt() { throw new RuntimeException("skeleton method"); } public final void suspend() { throw new RuntimeException("skeleton method"); } public final void resume() { throw new RuntimeException("skeleton method"); } public final void destroy() { throw new RuntimeException("skeleton method"); } public void list() { throw new RuntimeException("skeleton method"); } public void uncaughtException(Thread a1, Throwable a2) { throw new RuntimeException("skeleton method"); } public boolean allowThreadSuspension(boolean a1) { throw new RuntimeException("skeleton method"); } @SideEffectFree public String toString() { throw new RuntimeException("skeleton method"); } }