* All files: Updated copyright to reflect Cygnus purchase.
[official-gcc.git] / libjava / java / util / jar / JarInputStream.java
blob1736a53655c7ebf9ac26186d65102e16c2066d39
1 /* Copyright (C) 1999 Red Hat, Inc.
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 package java.util.jar;
11 import java.util.zip.*;
13 /**
14 * Does not implement any of the security. Just a place holder, so
15 * that I can implement URLClassLoader.
17 * @author Kresten Krab Thorup <krab@gnu.org>
18 * @date August 10, 1999.
21 public class JarInputStream extends ZipInputStream
23 public JarEntry getNextJarEntry () throws java.io.IOException
25 return new JarEntry (getNextEntry ());
28 public JarInputStream (java.io.InputStream is)
30 super(is);