home *** CD-ROM | disk | FTP | other *** search
- import java.io.*;
-
- public class \Name\ extends java.io.FileInputStream
- {
- public \Name\ (String AFileName) throws FileNotFoundException
- {
- super (AFileName);
- }
- public \Name\ (File AFile) throws FileNotFoundException
- {
- super (AFile);
- }
- public \Name\ (FileDescriptor AFileDescriptor)
- {
- super (AFileDescriptor);
- }
- }
-