home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / java40.jar / java / io / ObjectOutput.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  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.