FileWriter.java :  » Testing » KeY » java » io » Java Open Source

Java Open Source » Testing » KeY 
KeY » java » io » FileWriter.java



package java.io;
public class FileWriter extends OutputStreamWriter {
    public FileWriter(File file) throws SecurityException, IOException {}
    public FileWriter(File file, boolean append) throws IOException {}
    public FileWriter(FileDescriptor fd) throws SecurityException {}
    public FileWriter(String name) throws IOException {}
    public FileWriter(String name, boolean append) throws IOException {}
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.