Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 256 → Rev 257

/trunk/src/org/tela_botanica/client/modeles/EntiteGeographiqueObservation.java
2,7 → 2,7
 
/**
*
* Classe representant une entite geographique (localite, commune, lieu dit) presente dans la liste des observations
* Classe representant une idLocalite geographique (localite, commune, lieu dit) presente dans la liste des observations
*
*/
 
10,9 → 10,10
 
 
private String entite=null;
private String idEntite=null;
private String idParent=null;
private String idLocalite=null;
private String commune=null;
private String lieuDit=null;
private String station=null;
private String lat=null;
private String lon=null;
28,13 → 29,13
* @param departement
*/
public EntiteGeographiqueObservation(String entite, String idEntite, String idParent) {
public EntiteGeographiqueObservation(String idLocalite, String commune, String lieuDit, String station) {
this.entite = entite;
this.idEntite = idEntite;
this.idParent = idParent;
 
this.idLocalite = idLocalite;
this.commune = commune;
this.lieuDit = lieuDit;
this.station = station;
}
public void setLat(String la) {
53,19 → 54,23
return lon;
}
 
public String getIdLocation() {
return entite;
public String getIdLocalite() {
return idLocalite;
}
 
 
public String getLocation() {
return idEntite;
public String getCommune() {
return commune;
}
 
 
public String getLieuDit() {
return idParent;
return lieuDit;
}
public String getStation() {
return station;
}