home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / WIN95 / IAVAZIP.EXE / DATA.Z / rt.jar / java / io / FileReader.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-05-19  |  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.