01: package java.io;
02:
03: import gnu.java.io.EncodingManager;
04: import gnu.java.io.encode.Encoder;
05:
06: public class OutputStreamWriter extends Writer {
07: public OutputStreamWriter(OutputStream out, String encoding_scheme)
08: throws UnsupportedEncodingException {
09: }
10:
11: public OutputStreamWriter(OutputStream out) {
12: }
13:
14: public void close() throws IOException {
15: }
16:
17: public String getEncoding() {
18: }
19:
20: public void flush() throws IOException {
21: }
22:
23: public void write(char[] buf, int offset, int count)
24: throws IOException {
25: }
26:
27: public void write(String str, int offset, int count)
28: throws IOException {
29: }
30:
31: public void write(int ch) throws IOException {
32: }
33: }
|