01: package java.io;
02:
03: public class PipedOutputStream extends OutputStream {
04: PipedInputStream sink;
05: boolean closed;
06:
07: public PipedOutputStream() {
08: }
09:
10: public PipedOutputStream(PipedInputStream sink) throws IOException {
11: }
12:
13: public void connect(PipedInputStream sink) throws IOException {
14: }
15:
16: public void write(int b) throws IOException {
17: }
18:
19: public void write(byte[] b, int off, int len) throws IOException {
20: }
21:
22: public void flush() throws IOException {
23: }
24:
25: public void close() throws IOException {
26: }
27: }
|