Rev 649 | Rev 1289 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.client.modeles.objets;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.Window;
/**
*
* Classe representant une entite geographique (localite, commune, lieu dit) presente dans la liste des observations
*
*/
public class DateObservation {
private String annee=null;
private String mois=null;
private String jour=null;
public DateObservation() {
// TODO Auto-generated constructor stub
}
/**
* @param commune
* @param departement
*/
public DateObservation(String date) {
String dateTab[] = date.split(" ") ;
String dateSpl[] = dateTab[0].split("-") ;
annee= dateSpl[0];
mois= dateSpl[1];
jour= dateSpl[2];
}
public String getAnnee() {
return annee;
}
public String getMois() {
return mois;
}
public String getJour() {
return jour;
}
}