home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Internet
/
Javadraw
/
DATA.Z
/
Process.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
821b
|
42 lines
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
}
}