1.1 --- a/java/Postak/src/cz/frantovo/postak/Nastaveni.java Mon Sep 27 19:04:50 2010 +0200
1.2 +++ b/java/Postak/src/cz/frantovo/postak/Nastaveni.java Mon Apr 23 00:24:31 2012 +0200
1.3 @@ -21,9 +21,11 @@
1.4 private char[] dbHeslo;
1.5 /** Výchozí příjemci */
1.6 private ArrayList<InternetAddressKomu> vychoziPrijemci;
1.7 + /** Zkušební příjemci */
1.8 + private ArrayList<InternetAddressKomu> zkušebníPrijemci;
1.9 /** Přejatá konstanta od SuperPošťáka */
1.10 private String cestaKCertifikatum;
1.11 - /**
1.12 + /**
1.13 * Výchozí adresář pro ukládání a načítání souborů
1.14 * např. pro souborové dialogy
1.15 */
1.16 @@ -105,6 +107,10 @@
1.17 return vychoziPrijemci;
1.18 }
1.19
1.20 + public ArrayList<InternetAddressKomu> getZkušebníPrijemci() {
1.21 + return zkušebníPrijemci;
1.22 + }
1.23 +
1.24 public void setDatabaze(String databaze) {
1.25 this.databaze = databaze;
1.26 }
1.27 @@ -120,4 +126,8 @@
1.28 public void setVychoziPrijemci(ArrayList<InternetAddressKomu> vychoziPrijemci) {
1.29 this.vychoziPrijemci = vychoziPrijemci;
1.30 }
1.31 +
1.32 + public void setZkušebníPrijemci(ArrayList<InternetAddressKomu> zkušebníPrijemci) {
1.33 + this.zkušebníPrijemci = zkušebníPrijemci;
1.34 + }
1.35 }