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

  1. import java.io.*;
  2.  
  3. public class \Name\ extends java.io.ByteArrayInputStream
  4.    {
  5.    public \Name\ (byte ABytes[])
  6.       {
  7.       super (ABytes);
  8.       }
  9.    public \Name\ (byte ABytes[], int AFrom, int ALength)
  10.       {
  11.       super (ABytes, AFrom, ALength);
  12.       }
  13.    }
  14.