01: package java.io;
02:
03: public abstract class Reader {
04: protected Object lock;
05:
06: protected Reader() {
07: }
08:
09: protected Reader(Object lock) {
10: }
11:
12: public abstract int read(char buf[], int offset, int count)
13: throws IOException;
14:
15: public int read(char buf[]) throws IOException {
16: }
17:
18: public int read() throws IOException {
19: }
20:
21: public abstract void close() throws IOException;
22:
23: public boolean markSupported() {
24: }
25:
26: public void mark(int readLimit) throws IOException {
27: }
28:
29: public void reset() throws IOException {
30: }
31:
32: public boolean ready() throws IOException {
33: }
34:
35: public long skip(long count) throws IOException {
36: }
37: }
|