01: package java.io;
02:
03: public class FilterInputStream extends InputStream {
04: protected InputStream in;
05:
06: protected FilterInputStream(InputStream in) {
07: }
08:
09: public void mark(int readlimit) {
10: }
11:
12: public boolean markSupported() {
13: }
14:
15: public void reset() throws IOException {
16: }
17:
18: public int available() throws IOException {
19: }
20:
21: public long skip(long numBytes) throws IOException {
22: }
23:
24: public int read() throws IOException {
25: }
26:
27: public int read(byte[] buf) throws IOException {
28: }
29:
30: public int read(byte[] buf, int offset, int len) throws IOException {
31: }
32:
33: public void close() throws IOException {
34: }
35: }
|