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

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