home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / earthlink / nscomm / java40.jar / java / io / ObjectInput.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  487 b   |  18 lines

  1. package java.io;
  2.  
  3. public interface ObjectInput extends DataInput {
  4.    Object readObject() throws ClassNotFoundException, IOException;
  5.  
  6.    int read() throws IOException;
  7.  
  8.    int read(byte[] var1) throws IOException;
  9.  
  10.    int read(byte[] var1, int var2, int var3) throws IOException;
  11.  
  12.    long skip(long var1) throws IOException;
  13.  
  14.    int available() throws IOException;
  15.  
  16.    void close() throws IOException;
  17. }
  18.