Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public abstract class FilterReader extends Reader { // Protected Constructor protected FilterReader(Reader in); // Protected Instance Variables protected Reader in; // Public Instance Methods public void close() throws IOException; // Defines Reader.close() public void mark(int readAheadLimit) throws IOException; // Overrides Reader.mark() public boolean markSupported(); // Overrides Reader.markSupported() public int read() throws IOException; // Overrides Reader.read() public int read(char[] cbuf, int off, int len) throws IOException; // Defines Reader.read() public boolean ready() throws IOException; // Overrides Reader.ready() public void reset() throws IOException; // Overrides Reader.reset() public long skip(long n) throws IOException; // Overrides Reader.skip() }