kAWT Version 0.90

java.io
Class InputStream

java.lang.Object
  |
  +--java.io.InputStream
Direct Known Subclasses:
DataInputStream, FileInputStream

public abstract synchronized class InputStream
extends Object


Constructor Summary
InputStream()
           
 
Method Summary
 int available()
           
 void close()
           
 void mark(int)
           
 boolean markSupported()
           
abstract  int read()
           
 int read(byte[])
           
 int read(byte[], int, int)
           
 void reset()
           
 long skip(long)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InputStream

public InputStream()
Method Detail

available

public int available()
              throws IOException

close

public void close()
           throws IOException

mark

public void mark(int)

markSupported

public boolean markSupported()

read

public abstract int read()
                  throws IOException

read

public int read(byte[])
         throws IOException

read

public int read(byte[],
                int,
                int)
         throws IOException

reset

public void reset()
           throws IOException

skip

public long skip(long)
          throws IOException

kAWT Version 0.90