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

  1. import java.io.*;
  2.  
  3. public class \Name\ extends java.io.BufferedInputStream
  4.    {
  5.    public \Name\ (InputStream AStream)
  6.       {
  7.       super (AStream);
  8.       }
  9.    public \Name\ (InputStream AStream, int ABufSize)
  10.       {
  11.       super (AStream, ABufSize);
  12.       }
  13.    }
  14.