home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 June / CHIPHEFT062001.ISO / browser / nc32lyc / comm.z / java40.jar / java / io / ObjectOutput.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-08-15  |  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.