home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / io / FileReader.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  450 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.