blob: 7e38d0299fd7a1b839f45483f7f1e295d4cf5e67 [file] [log] [blame]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.lang;
public class ThreadGroup implements java.lang.Thread.UncaughtExceptionHandler {
public ThreadGroup(java.lang.String name) {
throw new RuntimeException("Stub!");
}
public ThreadGroup(java.lang.ThreadGroup parent, java.lang.String name) {
throw new RuntimeException("Stub!");
}
public int activeCount() {
throw new RuntimeException("Stub!");
}
public int activeGroupCount() {
throw new RuntimeException("Stub!");
}
@java.lang.Deprecated()
public boolean allowThreadSuspension(boolean b) {
throw new RuntimeException("Stub!");
}
public final void checkAccess() {
throw new RuntimeException("Stub!");
}
public final void destroy() {
throw new RuntimeException("Stub!");
}
public int enumerate(java.lang.Thread[] threads) {
throw new RuntimeException("Stub!");
}
public int enumerate(java.lang.Thread[] threads, boolean recurse) {
throw new RuntimeException("Stub!");
}
public int enumerate(java.lang.ThreadGroup[] groups) {
throw new RuntimeException("Stub!");
}
public int enumerate(java.lang.ThreadGroup[] groups, boolean recurse) {
throw new RuntimeException("Stub!");
}
public final int getMaxPriority() {
throw new RuntimeException("Stub!");
}
public final java.lang.String getName() {
throw new RuntimeException("Stub!");
}
public final java.lang.ThreadGroup getParent() {
throw new RuntimeException("Stub!");
}
public final void interrupt() {
throw new RuntimeException("Stub!");
}
public final boolean isDaemon() {
throw new RuntimeException("Stub!");
}
public synchronized boolean isDestroyed() {
throw new RuntimeException("Stub!");
}
public void list() {
throw new RuntimeException("Stub!");
}
public final boolean parentOf(java.lang.ThreadGroup g) {
throw new RuntimeException("Stub!");
}
@java.lang.SuppressWarnings(value = {"deprecation"})
@java.lang.Deprecated()
public final void resume() {
throw new RuntimeException("Stub!");
}
public final void setDaemon(boolean isDaemon) {
throw new RuntimeException("Stub!");
}
public final void setMaxPriority(int newMax) {
throw new RuntimeException("Stub!");
}
@java.lang.SuppressWarnings(value = {"deprecation"})
@java.lang.Deprecated()
public final void stop() {
throw new RuntimeException("Stub!");
}
@java.lang.SuppressWarnings(value = {"deprecation"})
@java.lang.Deprecated()
public final void suspend() {
throw new RuntimeException("Stub!");
}
public java.lang.String toString() {
throw new RuntimeException("Stub!");
}
public void uncaughtException(java.lang.Thread t, java.lang.Throwable e) {
throw new RuntimeException("Stub!");
}
}