01: package java.io;
02:
03: public abstract class FilterReader extends Reader {
04: protected Reader in;
05:
06: protected FilterReader(Reader in) {
07: }
08:
09: public void mark(int readlimit) throws IOException {
10: }
11:
12: public boolean markSupported() {
13: }
14:
15: public void reset() throws IOException {
16: }
17:
18: public boolean ready() throws IOException {
19: }
20:
21: public long skip(long num_chars) 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 void close() throws IOException {
31: }
32: }
|