01: package java.io;
02:
03: import java.nio.channels.FileChannel;
04: import gnu.java.nio.channels.FileChannelImpl;
05:
06: public class FileOutputStream extends OutputStream {
07: public FileOutputStream(String path, boolean append)
08: throws SecurityException, FileNotFoundException {
09: }
10:
11: public FileOutputStream(String path) throws SecurityException,
12: FileNotFoundException {
13: }
14:
15: public FileOutputStream(File file) throws SecurityException,
16: FileNotFoundException {
17: }
18:
19: public FileOutputStream(File file, boolean append)
20: throws FileNotFoundException {
21: }
22:
23: public FileOutputStream(FileDescriptor fdObj)
24: throws SecurityException {
25: }
26:
27: FileOutputStream(FileChannelImpl ch) {
28: }
29:
30: protected void finalize() throws IOException {
31: }
32:
33: public final FileDescriptor getFD() throws IOException {
34: }
35:
36: public void write(int b) throws IOException {
37: }
38:
39: public void write(byte[] buf) throws IOException {
40: }
41:
42: public void write(byte[] buf, int offset, int len)
43: throws IOException {
44: }
45:
46: public void close() throws IOException {
47: }
48:
49: public synchronized FileChannel getChannel() {
50: }
51: }
|