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

  1. import java.io.*;
  2.  
  3. public class \Name\ extends java.io.File
  4.    {
  5.    public \Name\ (String APath)
  6.       {
  7.       super (APath);
  8.       }
  9.    public \Name\ (String APath, String AName)
  10.       {
  11.       super (APath, AName);
  12.       }
  13.    public \Name\ (File ADir, String AName)
  14.       {
  15.       super (ADir, AName);
  16.       }
  17.     }
  18.