Runtime JDK 1.0

java.lang

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

Hierarchy^  ?

[Object]
   |
[Runtime]

Inherited Properties^  ?
Object: class

Inherited Methods^  ?
Object: clone(), equals(), finalize(), hashCode(), notify(), notifyAll(), toString(), wait(), wait(), wait()

Returned By^  ?
Runtime.getRuntime()

Uses^  ?
Class, ClassLoader, IndexOutOfBoundsException, NullPointerException, Object, Process, SecurityException, SecurityManager, String, StringBuffer, System, UnsatisfiedLinkError

Used By^  ?
System


Java Power Reference. Created by David Flanagan.
Copyright © 1999 O'Reilly & Associates.All Rights Reserved.

This file may not be distributed on the Internet.