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 / javaws.jar / javax / jnlp / JNLPRandomAccessFile.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  1.4 KB  |  82 lines

  1. package javax.jnlp;
  2.  
  3. import java.io.DataInput;
  4. import java.io.DataOutput;
  5. import java.io.IOException;
  6.  
  7. public interface JNLPRandomAccessFile extends DataInput, DataOutput {
  8.    void close() throws IOException;
  9.  
  10.    long length() throws IOException;
  11.  
  12.    long getFilePointer() throws IOException;
  13.  
  14.    int read() throws IOException;
  15.  
  16.    int read(byte[] var1, int var2, int var3) throws IOException;
  17.  
  18.    int read(byte[] var1) throws IOException;
  19.  
  20.    void readFully(byte[] var1) throws IOException;
  21.  
  22.    void readFully(byte[] var1, int var2, int var3) throws IOException;
  23.  
  24.    int skipBytes(int var1) throws IOException;
  25.  
  26.    boolean readBoolean() throws IOException;
  27.  
  28.    byte readByte() throws IOException;
  29.  
  30.    int readUnsignedByte() throws IOException;
  31.  
  32.    short readShort() throws IOException;
  33.  
  34.    int readUnsignedShort() throws IOException;
  35.  
  36.    char readChar() throws IOException;
  37.  
  38.    int readInt() throws IOException;
  39.  
  40.    long readLong() throws IOException;
  41.  
  42.    float readFloat() throws IOException;
  43.  
  44.    double readDouble() throws IOException;
  45.  
  46.    String readLine() throws IOException;
  47.  
  48.    String readUTF() throws IOException;
  49.  
  50.    void seek(long var1) throws IOException;
  51.  
  52.    void setLength(long var1) throws IOException;
  53.  
  54.    void write(int var1) throws IOException;
  55.  
  56.    void write(byte[] var1) throws IOException;
  57.  
  58.    void write(byte[] var1, int var2, int var3) throws IOException;
  59.  
  60.    void writeBoolean(boolean var1) throws IOException;
  61.  
  62.    void writeByte(int var1) throws IOException;
  63.  
  64.    void writeShort(int var1) throws IOException;
  65.  
  66.    void writeChar(int var1) throws IOException;
  67.  
  68.    void writeInt(int var1) throws IOException;
  69.  
  70.    void writeLong(long var1) throws IOException;
  71.  
  72.    void writeFloat(float var1) throws IOException;
  73.  
  74.    void writeDouble(double var1) throws IOException;
  75.  
  76.    void writeBytes(String var1) throws IOException;
  77.  
  78.    void writeChars(String var1) throws IOException;
  79.  
  80.    void writeUTF(String var1) throws IOException;
  81. }
  82.