2 * Rozšířené atributy – program na správu rozšířených atributů souborů
3 * Copyright © 2012 František Kučera (frantovo.cz)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package cz.frantovo.rozsireneatributy;
19 import java.nio.ByteBuffer;
20 import java.nio.charset.Charset;
23 * @author Ing. František Kučera (frantovo.cz)
25 public class Atribut {
28 private String hodnota;
30 public Atribut(String klíč, String hodnota) {
32 this.hodnota = hodnota;
35 public Atribut(String klíč, ByteBuffer hodnota) {
43 public String getKlíč() {
47 public void setKlíč(String klíč) {
52 * Název atributu musí být nenulový a mít nějakou délku, aby šel uložit
53 * TODO: další kontroly?
54 * @return jestli je platný
56 public boolean isPlatnýKlíč() {
57 return klíč != null && klíč.length() > 0;
61 * nulová hodnota → smazání atributu
62 * (ale může být prázdný řetězec)
63 * @return jestli je platná
65 public boolean isPlatnáHodnota() {
66 return hodnota != null;
69 public String getHodnota() {
73 public final ByteBuffer getHodnotaBajty() {
74 return zakóduj(getHodnota());
77 public void setHodnota(String hodnota) {
78 this.hodnota = hodnota;
81 public final void setHodnota(ByteBuffer hodnota) {
82 setHodnota(dekóduj(hodnota));
85 private static String dekóduj(ByteBuffer bajty) {
87 return Charset.defaultCharset().decode(bajty).toString();
90 private static ByteBuffer zakóduj(String text) {
94 return Charset.defaultCharset().encode(text);