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