01: package java.io;
02:
03: public class BufferedInputStream extends FilterInputStream {
04: protected byte[] buf;
05: protected int count;
06: protected int pos;
07: protected int markpos = -1;
08: protected int marklimit;
09:
10: public BufferedInputStream(InputStream in) {
11: }
12:
13: public BufferedInputStream(InputStream in, int size) {
14: }
15:
16: public synchronized int available() throws IOException {
17: }
18:
19: public void close() throws IOException {
20: }
21:
22: public synchronized void mark(int readlimit) {
23: }
24:
25: public boolean markSupported() {
26: }
27:
28: public synchronized int read() throws IOException {
29: }
30:
31: public synchronized int read(byte[] b, int off, int len)
32: throws IOException {
33: }
34:
35: public synchronized void reset() throws IOException {
36: }
37:
38: public synchronized long skip(long n) throws IOException {
39: }
40:
41: private boolean refill() throws IOException {
42: }
43: }
|