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

  1. import java.io.*;
  2.  
  3. public class \Name\ extends java.io.FileOutputStream
  4.    {
  5.    public \Name\ (String AFileName) throws IOException 
  6.       {
  7.       super (AFileName);
  8.       }
  9.    public \Name\ (File AFile) throws IOException 
  10.       {
  11.       super (AFile);
  12.       }
  13.    public \Name\ (FileDescriptor AFileDescriptor)
  14.       {
  15.       super (AFileDescriptor);
  16.       }
  17.    }
  18.