start of new file
[IRC.git] / Robust / src / ClassLibrary / OutputStream.java
1 public class OutputStream {
2     public OutputStream() {
3     }
4
5     public void write(int ch) {
6         System.printString("Called unimplemented write(int)\n");
7     }
8
9     public void write(byte[] b) {
10         System.printString("Called unimplemented write(byte[])\n");
11     }
12
13     public void write(byte[] b, int off, int len) {
14         System.printString("Called unimplemented write(byte[],int,int)\n");
15     }
16
17     public void flush() {
18     }
19     
20     public void close() {
21         System.printString("Called unimplemented close()\n");
22     }
23 }