corda/classpath/java/io/FileOutputStream.java

17 lines
369 B
Java
Raw Normal View History

2007-07-25 00:34:45 +00:00
package java.io;
public class FileOutputStream extends OutputStream {
private final FileDescriptor fd;
public FileOutputStream(FileDescriptor fd) {
this.fd = fd;
}
public native void write(int c) throws IOException;
public native void write(byte[] b, int offset, int length)
throws IOException;
public native void close() throws IOException;
}