01: package java.io;
02:
03: public class StringReader extends Reader {
04: public StringReader(String buffer) {
05: }
06:
07: public void close() {
08: }
09:
10: public void mark(int readAheadLimit) throws IOException {
11: }
12:
13: public boolean markSupported() {
14: }
15:
16: public int read() throws IOException {
17: }
18:
19: public int read(char[] b, int off, int len) throws IOException {
20: }
21:
22: public boolean ready() throws IOException {
23: }
24:
25: public void reset() throws IOException {
26: }
27:
28: public long skip(long n) throws IOException {
29: }
30: }
|