Process JDK 1.0

java.lang

Synopsis^  ?
public abstract class Process {
// Public Constructors
    public Process( );  
// Property Accessor Methods (by property name)
    public abstract InputStream getErrorStream( );  
    public abstract InputStream getInputStream( );  
    public abstract OutputStream getOutputStream( );  
// Public Instance Methods
    public abstract void destroy( );  
    public abstract int exitValue( );  
    public abstract int waitFor( ) throws InterruptedException;  
}

Hierarchy^  ?

[Object]
   |
[Process]

JavaBeans Properties^  ?

  Name    Type    Access    Default    Flags  
  errorStream    InputStream    get     read-only   
  inputStream    InputStream    get     read-only   
  outputStream    OutputStream    get     read-only   

Inherited Properties^  ?
Object: class

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

Returned By^  ?
Runtime.exec()

Uses^  ?
InterruptedException, Object

Used By^  ?
Runtime


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

This file may not be distributed on the Internet.