📄 threadgroup.java
字号:
/* libaegisvm - The Aegis Virtual Machine for executing Java bytecode Copyright (C) 2001-2002 Philip W. L. Fong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/package java.lang;import aegis.*;/** * \todo Not implemented yet. */public class ThreadGroup { public ThreadGroup(String name) { throw new FeatureNotYetImplementedError(); } public ThreadGroup(ThreadGroup parent, String name) { throw new FeatureNotYetImplementedError(); } public final String getName() { throw new FeatureNotYetImplementedError(); } public final ThreadGroup getParent() { throw new FeatureNotYetImplementedError(); } public final int getMaxPriority() { throw new FeatureNotYetImplementedError(); } public final boolean isDaemon() { throw new FeatureNotYetImplementedError(); } public boolean isDestroyed() { throw new FeatureNotYetImplementedError(); } public final void setDaemon(boolean daemon) { throw new FeatureNotYetImplementedError(); } public final void setMaxPriority(int pri) { throw new FeatureNotYetImplementedError(); } public final boolean parentOf(ThreadGroup g) { throw new FeatureNotYetImplementedError(); } public final void checkAccess() { throw new FeatureNotYetImplementedError(); } public int activeCount() { throw new FeatureNotYetImplementedError(); } public int enumerate(Thread[] list) { throw new FeatureNotYetImplementedError(); } public int enumerate(Thread[] list, boolean recurse) { throw new FeatureNotYetImplementedError(); } public int activeGroupCount() { throw new FeatureNotYetImplementedError(); } public int enumerate(ThreadGroup[] list) { throw new FeatureNotYetImplementedError(); } public int enumerate(ThreadGroup[] list, boolean recurse) { throw new FeatureNotYetImplementedError(); } public final void interrupt() { throw new FeatureNotYetImplementedError(); } public final void destroy() { throw new FeatureNotYetImplementedError(); } public void list() { throw new FeatureNotYetImplementedError(); } public void uncaughtException(Thread t, Throwable e) { throw new FeatureNotYetImplementedError(); } public String toString() { throw new FeatureNotYetImplementedError(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -