mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
sketch of Runtime.exec() and Calendar; misc bugfixes
This commit is contained in:
18
classpath/java/lang/Process.java
Normal file
18
classpath/java/lang/Process.java
Normal file
@ -0,0 +1,18 @@
|
||||
package java.lang;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
|
||||
public abstract class Process {
|
||||
public abstract void destroy();
|
||||
|
||||
public abstract int exitValue();
|
||||
|
||||
public abstract InputStream getInputStream();
|
||||
|
||||
public abstract OutputStream getOutputStream();
|
||||
|
||||
public abstract InputStream getErrorStream();
|
||||
|
||||
public abstract int waitFor() throws InterruptedException;
|
||||
}
|
Reference in New Issue
Block a user