Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2552 → Rev 2553

/trunk/src/org/tela_botanica/client/modeles/objets/EntiteGeographiqueObservation.java
8,8 → 8,6
 
public class EntiteGeographiqueObservation {
 
 
private String idZoneGeo=null;
private String zoneGeo=null;
private String lieuDit=null;
16,36 → 14,40
private String station=null;
private String lat=null;
private String lon=null;
private int zoom = 0; // si zoom <= 0, on l'ignore lors du rafraîchissement
 
public EntiteGeographiqueObservation() {
}
 
/**
* @param zoneGeo
* @param departement
*/
 
public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station, int zoom) {
this(idZoneGeo, zoneGeo, lieuDit, station);
this.zoom = zoom;
}
 
public EntiteGeographiqueObservation(String idZoneGeo, String zoneGeo, String lieuDit, String station) {
this.idZoneGeo = idZoneGeo;
this.zoneGeo = zoneGeo;
this.lieuDit = lieuDit;
this.station = station;
}
 
public void setLat(String la) {
lat = la;
}
 
public void setLon(String lo) {
lon = lo;
}
 
public void setZoom(int zoom) {
this.zoom = zoom;
}
 
public String getLat() {
return lat;
}
71,4 → 73,8
public String getStation() {
return station;
}
 
public int getZoom() {
return zoom;
}
}