01: package java.io;
02:
03: public class BufferedReader extends Reader {
04: Reader in;
05: char[] buffer;
06: int pos;
07: int limit;
08: int markPos = -1;
09: static final int DEFAULT_BUFFER_SIZE = 8192;
10:
11: public BufferedReader(Reader in) {
12: }
13:
14: public BufferedReader(Reader in, int size) {
15: }
16:
17: public void close() throws IOException {
18: }
19:
20: public boolean markSupported() {
21: }
22:
23: public void mark(int readLimit) throws IOException {
24: }
25:
26: public void reset() throws IOException {
27: }
28:
29: public boolean ready() throws IOException {
30: }
31:
32: public int read(char[] buf, int offset, int count)
33: throws IOException {
34: }
35:
36: private int fill() throws IOException {
37: }
38:
39: public int read() throws IOException {
40: }
41:
42: private int lineEnd(int limit) {
43: }
44:
45: public String readLine() throws IOException {
46: }
47:
48: public long skip(long count) throws IOException {
49: }
50:
51: private void checkStatus() throws IOException {
52: }
53: }
|