home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / io / ObjectInput.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  407 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.