From ee9dd3721be68b9fa63dea9aa5a1d86e66958cde Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 7 Apr 1999 14:42:40 +0000 Subject: Initial revision From-SVN: r26263 --- libjava/java/util/zip/ZipOutputStream.java | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libjava/java/util/zip/ZipOutputStream.java (limited to 'libjava/java/util/zip/ZipOutputStream.java') diff --git a/libjava/java/util/zip/ZipOutputStream.java b/libjava/java/util/zip/ZipOutputStream.java new file mode 100644 index 00000000000..42cfb00169e --- /dev/null +++ b/libjava/java/util/zip/ZipOutputStream.java @@ -0,0 +1,26 @@ +/* Copyright (C) 1999 Cygnus Solutions + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +package java.util.zip; +import java.io.*; + +/** JUST AN INCOMPLETE STUB! */ + +public class ZipOutputStream extends DeflaterOutputStream + implements ZipConstants +{ + public ZipOutputStream (OutputStream out) + { + super(out); + } + + public void putNextEntry (ZipEntry entry) throws IOException + { + throw new Error ("java.util.zip.ZipOutputStream.putNextEntry: not implemented"); + } +} -- cgit v1.2.3