home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / Process.pre < prev    next >
Text File  |  1995-10-08  |  821b  |  42 lines

  1. import java.lang.*;
  2. import java.io.*;
  3.  
  4. public class \Name\ extends java.lang.Process
  5.    {
  6.    public \Name\ ()
  7.       {
  8.       super ();
  9.       }
  10.    public OutputStream getOutputStream() 
  11.       {
  12.       //Add your code here
  13.       return null;
  14.       }
  15.    public InputStream getInputStream() 
  16.       {
  17.       //Add your code here
  18.       return null;
  19.       }
  20.    public InputStream getErrorStream() 
  21.       {
  22.       //Add your code here
  23.       return null;
  24.       }
  25.    public int waitFor() throws InterruptedException 
  26.       {
  27.       int AResult = 0;
  28.       //Add your code here
  29.       return AResult;
  30.       }
  31.    public int exitValue() 
  32.       {
  33.       int AResult = 0;
  34.       //Add your code here
  35.       return AResult;
  36.       }
  37.    public void destroy() 
  38.       {
  39.       //Add your code here
  40.       }
  41.    }
  42.