/[classpath]/classpath/java/util/zip/ZipEntry.java
ViewVC logotype

Diff of /classpath/java/util/zip/ZipEntry.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.13 by jfrijters, Mon Oct 11 13:11:57 2004 UTC revision 1.14 by mkoch, Fri Oct 22 18:02:06 2004 UTC
# Line 1  Line 1 
1  /* java.util.zip.ZipEntry  /* ZipEntry.java --
2     Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.     Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
# Line 71  public class ZipEntry implements ZipCons Line 71  public class ZipEntry implements ZipCons
71    int flags;              /* used by ZipOutputStream */    int flags;              /* used by ZipOutputStream */
72    int offset;             /* used by ZipFile and ZipOutputStream */    int offset;             /* used by ZipFile and ZipOutputStream */
73    
   
74    /**    /**
75     * Compression method.  This method doesn't compress at all.     * Compression method.  This method doesn't compress at all.
76     */     */
77    public final static int STORED      =  0;    public static final int STORED = 0;
78    /**    /**
79     * Compression method.  This method uses the Deflater.     * Compression method.  This method uses the Deflater.
80     */     */
81    public final static int DEFLATED    =  8;    public static final int DEFLATED = 8;
82    
83    /**    /**
84     * Creates a zip entry with the given name.     * Creates a zip entry with the given name.

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26