public class PipedReader extends Reader { // Public Constructors public PipedReader( ); public PipedReader(PipedWriter src) throws IOException; // Public Instance Methods public void close( ) throws IOException; // Defines Reader.close( ) public void connect(PipedWriter src) throws IOException; public int read(char[ ] cbuf, int off, int len) throws IOException; // Defines Reader.read( ) }