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 St�phane Gauchet 10 mail me at : sgauchet@free.fr 11 */ 12 package fr.hyphonem.conges.forms; 13 14 import org.apache.struts.action.ActionForm; 15 16 /** 17 * @author Stephane Gauchet pour Hyphonem 18 * 19 */ 20 public class PlanningForm extends ActionForm { 21 22 /** 23 * 24 */ 25 private static final long serialVersionUID = 1L; 26 27 private String start; 28 29 private String end; 30 31 private boolean export; 32 33 /** 34 * constructor 35 */ 36 public PlanningForm() { 37 super(); 38 } 39 40 /** 41 * @return end 42 */ 43 public String getEnd() { 44 return end; 45 } 46 47 /** 48 * @return start 49 */ 50 public String getStart() { 51 return start; 52 } 53 54 /** 55 * @param string 56 */ 57 public void setEnd(String string) { 58 end = string; 59 } 60 61 /** 62 * @param string 63 */ 64 public void setStart(String string) { 65 start = string; 66 } 67 68 /** 69 * @return Returns the export. 70 */ 71 public boolean isExport() { 72 return export; 73 } 74 75 /** 76 * @param export 77 * The export to set. 78 */ 79 public void setExport(boolean export) { 80 this.export = export; 81 } 82 83 }