01: package java.io;
02:
03: public abstract class FilterWriter extends Writer {
04: protected Writer out;
05:
06: protected FilterWriter(Writer 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(char[] buf, int offset, int len)
19: throws IOException {
20: }
21:
22: public void write(String str, int offset, int len)
23: throws IOException {
24: }
25: }
|