home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / io / ObjectOutput.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  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.