home *** CD-ROM | disk | FTP | other *** search
- package java.io;
-
- public abstract class OutputStream {
- public abstract void write(int var1) throws IOException;
-
- public void write(byte[] b) throws IOException {
- this.write(b, 0, b.length);
- }
-
- public void write(byte[] b, int off, int len) throws IOException {
- for(int i = 0; i < len; ++i) {
- this.write(b[off + i]);
- }
-
- }
-
- public void flush() throws IOException {
- }
-
- public void close() throws IOException {
- }
- }
-