home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / io / FileReader.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  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.