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