Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 964 → Rev 965

/trunk/src/org/tela_botanica/client/modeles/EntiteGeographiqueObservation.java
2,7 → 2,7
 
/**
*
* Classe representant une idLocalite geographique (localite, commune, lieu dit) presente dans la liste des observations
* Classe representant une idZoneGeo geographique (localite, zoneGeo, lieu dit) presente dans la liste des observations
*
*/
 
10,8 → 10,8
 
 
private String idLocalite=null;
private String commune=null;
private String idZoneGeo=null;
private String zoneGeo=null;
private String lieuDit=null;
private String station=null;
private String lat=null;
25,14 → 25,14
 
/**
* @param commune
* @param zoneGeo
* @param departement
*/
public EntiteGeographiqueObservation(String idLocalite, String commune, String lieuDit, String station) {
public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station) {
this.idLocalite = idLocalite;
this.commune = commune;
this.idZoneGeo = idZoneGeo;
this.zoneGeo = zoneGeo;
this.lieuDit = lieuDit;
this.station = station;
54,13 → 54,13
return lon;
}
 
public String getIdLocalite() {
return idLocalite;
public String getIdZoneGeo() {
return idZoneGeo;
}
 
 
public String getCommune() {
return commune;
public String getZoneGeo() {
return zoneGeo;
}
 
 
71,8 → 71,4
public String getStation() {
return station;
}
 
 
 
}