Class java.lang.Runtime (1.0)


public class Runtime extends Object {
  // No Constructor
  // Class Methods
    public static Runtime getRuntime( );
    public static void runFinalizersOnExit(boolean value);
  // Public Instance Methods
    public Process exec(String command) throws IOException;
    public Process exec(String command, String[ ] envp) throws IOException;
    public Process exec(String[ ] cmdarray) throws IOException;
    public Process exec(String[ ] cmdarray, String[ ] envp) throws IOException;
    public void exit(int status);
    public long freeMemory( );
    public void gc( );
    public InputStream getLocalizedInputStream(InputStream in);  // Deprecated
    public OutputStream getLocalizedOutputStream(OutputStream out);  // Deprecated
    public synchronized void load(String filename) throws UnsatisfiedLinkError;
    public synchronized void loadLibrary(String libname) throws UnsatisfiedLinkError;
    public void runFinalization( );
    public long totalMemory( );
    public void traceInstructions(boolean on);
    public void traceMethodCalls(boolean on);
}