1 /*Copyright (C) 2004-... Stephane Gauchet for Hyphonem 2 3 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 4 5 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 6 7 You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 8 9 Written by Stephane Gauchet 10 mail me at : sgauchet@free.fr 11 */ 12 package fr.hyphonem.conges.data; 13 14 /** 15 * @author Stephane Gauchet pour Hyphonem 16 */ 17 public class PeriodData { 18 19 private String code; 20 21 private String label; 22 23 public String getCode() { 24 return code; 25 } 26 27 public void setCode(String code) { 28 this.code = code; 29 } 30 31 public String getLabel() { 32 return label; 33 } 34 35 public void setLabel(String label) { 36 this.label = label; 37 } 38 39 public PeriodData() { 40 } 41 42 public PeriodData(String code, String label) { 43 this.code = code; 44 this.label = label; 45 } 46 47 }