Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public class FilterInputStream extends InputStream {
   // Protected Constructor
      protected FilterInputStream(InputStream in);
   // Protected Instance Variables
      protected InputStream in;
   // Public Instance Methods
      public int available() throws IOException;  // Overrides InputStream.available()
      public void close() throws IOException;  // Overrides InputStream.close()
      public synchronized void mark(int readlimit);  // Overrides InputStream.mark()
      public boolean markSupported();  // Overrides InputStream.markSupported()
      public int read() throws IOException;  // Defines InputStream.read()
      public int read(byte[] b) throws IOException;  // Overrides InputStream.read()
      public int read(byte[] b, int off, int len) throws IOException;  // Overrides InputStream.read()
      public synchronized void reset() throws IOException;  // Overrides InputStream.reset()
      public long skip(long n) throws IOException;  // Overrides InputStream.skip()
}