home *** CD-ROM | disk | FTP | other *** search
- import java.lang.*;
- import java.io.*;
-
- public class \Name\ extends java.lang.Process
- {
- public \Name\ ()
- {
- super ();
- }
- public OutputStream getOutputStream()
- {
- //Add your code here
- return null;
- }
- public InputStream getInputStream()
- {
- //Add your code here
- return null;
- }
- public InputStream getErrorStream()
- {
- //Add your code here
- return null;
- }
- public int waitFor() throws InterruptedException
- {
- int AResult = 0;
- //Add your code here
- return AResult;
- }
- public int exitValue()
- {
- int AResult = 0;
- //Add your code here
- return AResult;
- }
- public void destroy()
- {
- //Add your code here
- }
- }
-