home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / io / FileWriter.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  609 b   |  24 lines

  1. package java.io;
  2.  
  3. public class FileWriter extends OutputStreamWriter {
  4.    public FileWriter(String var1) throws IOException {
  5.       super(new FileOutputStream(var1));
  6.    }
  7.  
  8.    public FileWriter(String var1, boolean var2) throws IOException {
  9.       super(new FileOutputStream(var1, var2));
  10.    }
  11.  
  12.    public FileWriter(File var1) throws IOException {
  13.       super(new FileOutputStream(var1));
  14.    }
  15.  
  16.    public FileWriter(File var1, boolean var2) throws IOException {
  17.       super(new FileOutputStream(var1, var2));
  18.    }
  19.  
  20.    public FileWriter(FileDescriptor var1) {
  21.       super(new FileOutputStream(var1));
  22.    }
  23. }
  24.