Class java.util.zip.InflaterInputStream (1.1)
public class InflaterInputStream extends FilterInputStream {
// Public Constructors
public InflaterInputStream(InputStream in, Inflater inf, int size);
public InflaterInputStream(InputStream in, Inflater inf);
// Protected Instance Variables
protected byte[ ] buf;
protected Inflater inf;
protected int len;
// Public Instance Methods
public int read( ) throws IOException; // Overrides FilterInputStream.read( )
public int read(byte[ ] buf, int off, int len) throws IOException; // Overrides FilterInputStream.read( )
public long skip(long n) throws IOException; // Overrides FilterInputStream.skip( )
// Protected Instance Methods
protected void fill( ) throws IOException;
}