Class java.util.zip.Inflater (1.1)
public class Inflater extends Object {
// Public Constructors
public Inflater(boolean nowrap);
public Inflater( );
// Public Instance Methods
public synchronized void end( );
public synchronized boolean finished( );
public synchronized int getAdler( );
public synchronized int getRemaining( );
public synchronized int getTotalIn( );
public synchronized int getTotalOut( );
public synchronized int inflate(byte[ ] buf, int off, int len) throws DataFormatException;
public synchronized boolean needsDictionary( );
public synchronized boolean needsInput( );
public synchronized void reset( );
public synchronized void setDictionary(byte[ ] buf, int off, int len);
public synchronized void setInput(byte[ ] buf, int off, int len);
// Protected Instance Methods
protected void finalize( ); // Overrides Object.finalize( )
}