Subversion Repositories eFlore/Applications.cel

Rev

Rev 1289 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
989 aurelien 1
package org.tela_botanica.client.modeles.objets;
91 jpm 2
 
3
/**
4
 *
5
 * Classe representant une entite geographique (localite, commune, lieu dit) presente dans la liste des observations
6
 *
7
 */
8
 
9
public class DateObservation {
10
 
11
	private String annee=null;
12
	private String mois=null;
13
	private String jour=null;
14
 
15
	/**
16
	 * @param commune
17
	 * @param departement
18
	 */
19
	public DateObservation(String date) {
20
 
21
		String dateTab[] = date.split(" ") ;
22
		String dateSpl[] = dateTab[0].split("-") ;
23
 
24
		annee= dateSpl[0];
25
		mois= dateSpl[1];
26
		jour= dateSpl[2];
27
 
28
	}
29
 
30
	public String getAnnee() {
31
		return annee;
32
	}
33
 
34
 
35
	public String getMois() {
36
		return mois;
37
	}
38
 
39
 
40
	public String getJour() {
41
		return jour;
42
	}
43
}