home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / io / FileReader.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  588 b   |  16 lines

  1. package java.io;
  2.  
  3. public class FileReader extends InputStreamReader {
  4.    public FileReader(String var1) throws FileNotFoundException {
  5.       super(new FileInputStream(var1));
  6.    }
  7.  
  8.    public FileReader(File var1) throws FileNotFoundException {
  9.       super(new FileInputStream(var1));
  10.    }
  11.  
  12.    public FileReader(FileDescriptor var1) {
  13.       super(new FileInputStream(var1));
  14.    }
  15. }
  16.