java.io
Class PipedReader

java.lang.Object
  |
  +--java.io.Reader
        |
        +--java.io.PipedReader

public synchronized class PipedReader
extends Reader


Field Summary
 
Fields inherited from class java.io.Reader
lock
 
Constructor Summary
PipedReader()
           
PipedReader(PipedWriter)
           
 
Method Summary
 void close()
           
 void connect(PipedWriter)
           
 int read()
           
 int read(char[], int, int)
           
 boolean ready()
           
 
Methods inherited from class java.io.Reader
mark, markSupported, read, reset, skip
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait
 

Constructor Detail

PipedReader

public PipedReader(PipedWriter)
            throws IOException

PipedReader

public PipedReader()
Method Detail

connect

public void connect(PipedWriter)
             throws IOException
IOException

read

public int read()
         throws IOException
Overrides:
read in class Reader
IOException

read

public int read(char[],
                int,
                int)
         throws IOException
Specified by:
read in class Reader
IOException

ready

public boolean ready()
              throws IOException
Overrides:
ready in class Reader
IOException

close

public void close()
           throws IOException
Specified by:
close in class Reader
IOException