Rev 89 | Rev 257 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.client.modeles;
/**
*
* Classe representant une entite geographique (localite, commune, lieu dit) presente dans la liste des observations
*
*/
public class EntiteGeographiqueObservation {
private String entite=null;
private String idEntite=null;
private String idParent=null;
private String lat=null;
private String lon=null;
public EntiteGeographiqueObservation() {
}
/**
* @param commune
* @param departement
*/
public EntiteGeographiqueObservation(String entite, String idEntite, String idParent) {
this.entite = entite;
this.idEntite = idEntite;
this.idParent = idParent;
}
public void setLat(String la) {
lat = la;
}
public void setLon(String lo) {
lon = lo;
}
public String getLat() {
return lat;
}
public String getLon() {
return lon;
}
public String getIdLocation() {
return entite;
}
public String getLocation() {
return idEntite;
}
public String getLieuDit() {
return idParent;
}
}