summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/io/FileOutputStream.java
blob: 2b32697daf3dded1fc892189d6e95dc188db0f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package java.io;
public class FileOutputStream
  extends java.io.OutputStream
{
public  FileOutputStream(java.io.File file) throws java.io.FileNotFoundException { throw new RuntimeException("Stub!"); }
public  FileOutputStream(java.io.File file, boolean append) throws java.io.FileNotFoundException { throw new RuntimeException("Stub!"); }
public  FileOutputStream(java.io.FileDescriptor fd) { throw new RuntimeException("Stub!"); }
public  FileOutputStream(java.lang.String path) throws java.io.FileNotFoundException { throw new RuntimeException("Stub!"); }
public  FileOutputStream(java.lang.String path, boolean append) throws java.io.FileNotFoundException { throw new RuntimeException("Stub!"); }
public  void close() throws java.io.IOException { throw new RuntimeException("Stub!"); }
protected  void finalize() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  java.nio.channels.FileChannel getChannel() { throw new RuntimeException("Stub!"); }
public final  java.io.FileDescriptor getFD() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  void write(byte[] buffer, int byteOffset, int byteCount) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  void write(int oneByte) throws java.io.IOException { throw new RuntimeException("Stub!"); }
}