View Javadoc

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.data;
13  
14  import java.io.Serializable;
15  
16  /**
17   * @author Stephane Gauchet pour Hyphonem
18   * 
19   */
20  public class StatsData implements Serializable {
21  
22  	/**
23  	 * 
24  	 */
25  	private static final long serialVersionUID = 1L;
26  
27  	String raison;
28  
29  	String nbJours;
30  
31  	String maxNBJours;
32  
33  	String dateDebut;
34  
35  	String dateFin;
36  
37  	/**
38  	 * 
39  	 */
40  	public StatsData() {
41  		super();
42  	}
43  
44  	/**
45  	 * @return dateDebut
46  	 */
47  	public String getDateDebut() {
48  		return dateDebut;
49  	}
50  
51  	/**
52  	 * @return dateFin
53  	 */
54  	public String getDateFin() {
55  		return dateFin;
56  	}
57  
58  	/**
59  	 * @return nbJours
60  	 */
61  	public String getNbJours() {
62  		return nbJours;
63  	}
64  
65  	/**
66  	 * @return raison
67  	 */
68  	public String getRaison() {
69  		return raison;
70  	}
71  
72  	/**
73  	 * @param string
74  	 */
75  	public void setDateDebut(String string) {
76  		dateDebut = string;
77  	}
78  
79  	/**
80  	 * @param string
81  	 */
82  	public void setDateFin(String string) {
83  		dateFin = string;
84  	}
85  
86  	/**
87  	 * @param string
88  	 */
89  	public void setNbJours(String string) {
90  		nbJours = string;
91  	}
92  
93  	/**
94  	 * @param string
95  	 */
96  	public void setRaison(String string) {
97  		raison = string;
98  	}
99  
100 	/**
101 	 * @return maxNBJours
102 	 */
103 	public String getMaxNBJours() {
104 		return maxNBJours;
105 	}
106 
107 	/**
108 	 * @param string
109 	 */
110 	public void setMaxNBJours(String string) {
111 		maxNBJours = string;
112 	}
113 }