01: package java.io;
02:
03: public class PipedReader extends Reader {
04: PipedWriter source;
05: boolean closed;
06: static final int PIPE_SIZE = 2048;
07: char[] buffer = new char[PIPE_SIZE];
08: int in = -1;
09: int out = 0;
10: char[] read_buf = new char[1];
11:
12: public PipedReader() {
13: }
14:
15: public PipedReader(PipedWriter source) throws IOException {
16: }
17:
18: public void connect(PipedWriter source) throws IOException {
19: }
20:
21: void receive(char[] buf, int offset, int len) throws IOException {
22: }
23:
24: public int read() throws IOException {
25: }
26:
27: public int read(char[] buf, int offset, int len) throws IOException {
28: }
29:
30: public boolean ready() throws IOException {
31: }
32:
33: public void close() throws IOException {
34: }
35: }
|