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

  1. import java.io.*;
  2.  
  3. public class \Name\ extends java.io.InputStream
  4.    {
  5.    public \Name\ ()
  6.       {
  7.       super ();
  8.       }
  9.    public int read() throws IOException
  10.       {
  11.       int AResult = 0;
  12.       //Add your code here
  13.       return AResult;
  14.       }
  15.    }
  16.