aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util/zip/DeflaterOutputStream.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-04-29 07:37:14 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-04-29 07:37:14 +0000
commit8efaad2140cfae9bccbea51d20865e3e661a5ac7 (patch)
treee7ee5b6202a3ea298aed979b4bf46e9121359c4a /libjava/java/util/zip/DeflaterOutputStream.java
parent29f4feceaa01049baed47c24a98be0192f2a54c5 (diff)
downloadgcc-8efaad2140cfae9bccbea51d20865e3e661a5ac7.zip
gcc-8efaad2140cfae9bccbea51d20865e3e661a5ac7.tar.gz
gcc-8efaad2140cfae9bccbea51d20865e3e661a5ac7.tar.bz2
Deflater.java, [...]: Partly merged with classpath.
2003-04-29 Michael Koch <konqueror@gmx.de> * java/util/zip/Deflater.java, java/util/zip/DeflaterOutputStream.java: Partly merged with classpath. From-SVN: r66207
Diffstat (limited to 'libjava/java/util/zip/DeflaterOutputStream.java')
-rw-r--r--libjava/java/util/zip/DeflaterOutputStream.java18
1 files changed, 12 insertions, 6 deletions
diff --git a/libjava/java/util/zip/DeflaterOutputStream.java b/libjava/java/util/zip/DeflaterOutputStream.java
index a430288..755d8e7 100644
--- a/libjava/java/util/zip/DeflaterOutputStream.java
+++ b/libjava/java/util/zip/DeflaterOutputStream.java
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -41,16 +41,22 @@ import java.io.FilterOutputStream;
import java.io.OutputStream;
import java.io.IOException;
-/**
- * @author Tom Tromey
- * @date May 17, 1999
- */
-
/* Written using on-line Java Platform 1.2 API Specification
* and JCL book.
* Believed complete and correct.
*/
+/**
+ * This is a special FilterOutputStream deflating the bytes that are
+ * written through it. It uses the Deflater for deflating.
+ *
+ * A special thing to be noted is that flush() doesn't flush
+ * everything in Sun's JDK, but it does so in jazzlib. This is because
+ * Sun's Deflater doesn't have a way to flush() everything, without
+ * finishing the stream.
+ *
+ * @author Tom Tromey, Jochen Hoenicke
+ */
public class DeflaterOutputStream extends FilterOutputStream
{
public void close () throws IOException