home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / WIN95 / IAVAZIP.EXE / DATA.Z / rt.jar / java / io / ObjectOutput.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-05-19  |  436 b   |  16 lines

  1. package java.io;
  2.  
  3. public interface ObjectOutput extends DataOutput {
  4.    void writeObject(Object var1) throws IOException;
  5.  
  6.    void write(int var1) throws IOException;
  7.  
  8.    void write(byte[] var1) throws IOException;
  9.  
  10.    void write(byte[] var1, int var2, int var3) throws IOException;
  11.  
  12.    void flush() throws IOException;
  13.  
  14.    void close() throws IOException;
  15. }
  16.