home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / io / ObjectOutput.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  337 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.