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