blob: 55f225456ea23301badf05d25c05bfc4c98e3ead [file] [log] [blame]
Stefan Bodewig4e2380b2009-02-18 14:51:10 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19package org.apache.commons.compress.archivers.zip;
20
21/**
22 * Info-ZIP Unicode Comment Extra Field (0x6375):
23 *
24 * <p>Stores the UTF-8 version of the file comment as stored in the
25 * central directory header.</p>
26 *
Stefan Bodewigb86d8a62013-07-17 14:37:22 +000027 * <p>See {@link
28 * "http://www.pkware.com/documents/casestudies/APPNOTE.TXT PKWARE's
29 * APPNOTE.TXT, section 4.6.8"}.</p>
30 *
Sebastian Bazley99870ef2009-03-28 00:04:36 +000031 * @NotThreadSafe super-class is not thread-safe
Stefan Bodewig4e2380b2009-02-18 14:51:10 +000032 */
33public class UnicodeCommentExtraField extends AbstractUnicodeExtraField {
34
35 public static final ZipShort UCOM_ID = new ZipShort(0x6375);
36
37 public UnicodeCommentExtraField () {
38 }
39
40 /**
Stefan Bodewig853176f2009-03-02 16:09:20 +000041 * Assemble as unicode comment extension from the name given as
42 * text as well as the encoded bytes actually written to the archive.
Stefan Bodewig4e2380b2009-02-18 14:51:10 +000043 *
Sebastian Bazley8ebac242009-03-04 00:18:09 +000044 * @param text The file name
Stefan Bodewig853176f2009-03-02 16:09:20 +000045 * @param bytes the bytes actually written to the archive
46 * @param off The offset of the encoded comment in <code>bytes</code>.
47 * @param len The length of the encoded comment or comment in
48 * <code>bytes</code>.
Stefan Bodewig4e2380b2009-02-18 14:51:10 +000049 */
Stefan Bodewig853176f2009-03-02 16:09:20 +000050 public UnicodeCommentExtraField(String text, byte[] bytes, int off,
51 int len) {
52 super(text, bytes, off, len);
Stefan Bodewigccc77aa2009-02-26 09:07:23 +000053 }
54
55 /**
56 * Assemble as unicode comment extension from the comment given as
57 * text as well as the bytes actually written to the archive.
58 *
59 * @param comment The file comment
60 * @param bytes the bytes actually written to the archive
61 */
62 public UnicodeCommentExtraField(String comment, byte[] bytes) {
63 super(comment, bytes);
Stefan Bodewig4e2380b2009-02-18 14:51:10 +000064 }
65
Stefan Bodewig4e2380b2009-02-18 14:51:10 +000066 public ZipShort getHeaderId() {
67 return UCOM_ID;
68 }
69
70}