01: package java.io;
02:
03: public class FileWriter extends OutputStreamWriter {
04: public FileWriter(File file) throws SecurityException, IOException {
05: }
06:
07: public FileWriter(File file, boolean append) throws IOException {
08: }
09:
10: public FileWriter(FileDescriptor fd) throws SecurityException {
11: }
12:
13: public FileWriter(String name) throws IOException {
14: }
15:
16: public FileWriter(String name, boolean append) throws IOException {
17: }
18: }
|