All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class org.jos.java.io.InputStream

java.lang.Object
    |
    +----org.jos.java.io.InputStream

public abstract class InputStream
extends Object
JOS replacement of a standard Java IO class.

based on kore-0.0.7 by Glynn Clements

Version:
JOS-FileSystem 4 Preview (25-Mar-98)
Author:
Glynn Clements
Author:
Stefan Reich

Constructor Index

 o InputStream()

Method Index

 o available()
 o close()
 o mark(int)
 o markSupported()
 o read()
 o read(byte[])
 o read(byte[], int, int)
 o reset()
 o skip(long)

Constructors

 o InputStream
public InputStream()

Methods

 o available
public int available() throws IOException
 o close
public void close() throws IOException
 o markSupported
public boolean markSupported()
 o mark
public void mark(int readlimit)
 o read
public abstract int read() throws IOException
 o read
public int read(byte[] b,
                int off,
                int len) throws IOException
 o read
public int read(byte[] b) throws IOException
 o reset
public void reset() throws IOException
 o skip
public long skip(long n) throws IOException

All Packages  Class Hierarchy  This Package  Previous  Next  Index