/**@class java.util.zip.GZIPOutputStream
@extends java.util.zip.DeflaterOutputStream

 This class implements a stream filter for writing compressed data in
 the GZIP file format.
 @author      David Connelly

*/
var GZIPOutputStream = {

/**Writes array of bytes to the compressed output stream. This method
 will block until all the bytes are written.
@param {Object {byte[]}} buf the data to be written
@param {Number} off the start offset of the data
@param {Number} len the length of the data
@exception IOException If an I/O error has occurred.
*/
write : function(  ) {},

/**Finishes writing compressed data to the output stream without closing
 the underlying stream. Use this method when applying multiple filters
 in succession to the same output stream.
@exception IOException if an I/O error has occurred
*/
finish : function(  ) {},


};