~ubuntu-branches/ubuntu/utopic/libcommons-compress-java/utopic

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/compress/archivers/zip/Zip64ExtendedInformationExtraField.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-03-13 08:37:01 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140313083701-spnlyo3fl3qcp0ab
Tags: 1.8-1
* New upstream release
* Updated the OSGi metadata
* The dependency on libxz-java is now suggested and no longer required

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 * Holds size and other extended information for entries that use Zip64
28
28
 * features.
29
29
 *
30
 
 * <p>See {@link
31
 
 * "http://www.pkware.com/documents/casestudies/APPNOTE.TXT PKWARE's
32
 
 * APPNOTE.TXT, section 4.5.3"}.</p>
33
 
 *
34
30
 * <p>Currently Commons Compress doesn't support encrypting the
35
 
 * central directory so the note about masking doesn't apply.</p>
 
31
 * central directory so the note in APPNOTE.TXT about masking doesn't
 
32
 * apply.</p>
36
33
 *
37
34
 * <p>The implementation relies on data being read from the local file
38
35
 * header and assumes that both size values are always present.</p>
39
36
 *
 
37
 * @see <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT">PKWARE
 
38
 * APPNOTE.TXT, section 4.5.3</a>
 
39
 *
40
40
 * @since 1.2
41
41
 * @NotThreadSafe
42
42
 */