Package java.lang
Class Process
- java.lang.Object
-
- java.lang.Process
-
public abstract class Process extends Object
-
-
Constructor Summary
Constructors Constructor Description Process()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
destroy()
abstract int
exitValue()
abstract InputStream
getErrorStream()
abstract InputStream
getInputStream()
abstract OutputStream
getOutputStream()
abstract int
waitFor()
-
-
-
Method Detail
-
destroy
public abstract void destroy()
-
exitValue
public abstract int exitValue()
-
getErrorStream
public abstract InputStream getErrorStream()
-
getInputStream
public abstract InputStream getInputStream()
-
getOutputStream
public abstract OutputStream getOutputStream()
-
waitFor
public abstract int waitFor() throws InterruptedException
- Throws:
InterruptedException
-
-