01: package java.io;
02:
03: public class FilterOutputStream extends OutputStream {
04: protected OutputStream out;
05:
06: public FilterOutputStream(OutputStream out) {
07: }
08:
09: public void close() throws IOException {
10: }
11:
12: public void flush() throws IOException {
13: }
14:
15: public void write(int b) throws IOException {
16: }
17:
18: public void write(byte[] buf) throws IOException {
19: }
20:
21: public void write(byte[] buf, int offset, int len)
22: throws IOException {
23: }
24: }
|