01: package java.io;
02:
03: public class StringBufferInputStream extends InputStream {
04: protected String buffer;
05: protected int pos = 0;
06: protected int count;
07:
08: public StringBufferInputStream(String s) {
09: }
10:
11: public int available() {
12: }
13:
14: public int read() {
15: }
16:
17: public int read(byte[] b, int off, int len) {
18: }
19:
20: public void reset() {
21: }
22:
23: public long skip(long n) {
24: }
25: }
|