gausssoft.io
Class InputStream

java.lang.Object
  |
  +--java.io.InputStream
        |
        +--gausssoft.io.InputStream

public abstract class InputStream
extends InputStream

This class is a variation on the normal InputStream class, as it specifies that the read method which takes a byte array argument, an offset argument and a size argument needs to be implemented, rather than the normal read method.

Author:
Allan Crooks
See Also:
InputStream

Constructor Summary
protected InputStream()
           
 
Method Summary
 int read()
           
abstract  int read(byte[] b, int off, int len)
           
 
Methods inherited from class java.io.InputStream
available, close, mark, markSupported, read, reset, skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InputStream

protected InputStream()
Method Detail

read

public int read()
         throws IOException
Overrides:
read in class InputStream

read

public abstract int read(byte[] b,
                         int off,
                         int len)
                  throws IOException
Overrides:
read in class InputStream