001: package java.lang;
002:
003: import java.io.File;
004: import java.io.InputStream;
005: import java.io.IOException;
006: import java.io.OutputStream;
007: import java.util.HashSet;
008: import java.util.Iterator;
009: import java.util.Properties;
010: import java.util.Set;
011: import java.util.StringTokenizer;
012:
013: public class Runtime {
014: static SecurityManager securityManager;
015: static Properties defaultProperties = new Properties();
016: static {
017: }
018:
019: private Runtime() {
020: }
021:
022: public static Runtime getRuntime() {
023: }
024:
025: public void exit(int status) {
026: }
027:
028: boolean runShutdownHooks() {
029: }
030:
031: public void addShutdownHook(Thread hook) {
032: }
033:
034: public boolean removeShutdownHook(Thread hook) {
035: }
036:
037: public void halt(int status) {
038: }
039:
040: public static void runFinalizersOnExit(boolean finalizeOnExit) {
041: }
042:
043: public Process exec(String cmdline) throws IOException {
044: }
045:
046: public Process exec(String cmdline, String[] env)
047: throws IOException {
048: }
049:
050: public Process exec(String cmdline, String[] env, File dir)
051: throws IOException {
052: }
053:
054: public Process exec(String[] cmd) throws IOException {
055: }
056:
057: public Process exec(String[] cmd, String[] env) throws IOException {
058: }
059:
060: public Process exec(String[] cmd, String[] env, File dir)
061: throws IOException {
062: }
063:
064: public int availableProcessors() {
065: }
066:
067: public long freeMemory() {
068: }
069:
070: public long totalMemory() {
071: }
072:
073: public long maxMemory() {
074: }
075:
076: public void gc() {
077: }
078:
079: public void runFinalization() {
080: }
081:
082: public void traceInstructions(boolean on) {
083: }
084:
085: public void traceMethodCalls(boolean on) {
086: }
087:
088: public void load(String filename) {
089: }
090:
091: private static int loadLib(String filename) {
092: }
093:
094: public void loadLibrary(String libname) {
095: }
096:
097: public InputStream getLocalizedInputStream(InputStream in) {
098: }
099:
100: public OutputStream getLocalizedOutputStream(OutputStream out) {
101: }
102: }
|