/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang; import java.io.InputStream; import java.io.OutputStream; public abstract class Process extends Object { public Process() { } public abstract OutputStream getOutputStream(); public abstract InputStream getInputStream(); public abstract InputStream getErrorStream(); public abstract int waitFor() throws InterruptedException; public abstract int exitValue(); public abstract void destroy(); }