Subversion Repositories eFlore/Applications.cel

Rev

Rev 989 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.tela_botanica.client.modeles.objets;

/**
 * 
 * Classe representant une idZoneGeo geographique (localite, zoneGeo, lieu dit) presente dans la liste des observations
 * 
 */

public class EntiteGeographiqueObservation {


        
        private String idZoneGeo=null;
        private String zoneGeo=null;
        private String lieuDit=null;
        private String station=null;
        private String lat=null;
        private String lon=null;
        
        

        
        public EntiteGeographiqueObservation() {
        }

        
        /**
         * @param zoneGeo
         * @param departement
         */
        
        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 String getLat() {
                return lat;
        }
        
        public String getLon() {
                return lon;
        }

        public String getIdZoneGeo() {
                return idZoneGeo;
        }


        public String getZoneGeo() {
                return zoneGeo;
        }


        public String getLieuDit() {
                return lieuDit;
        }
        
        public String getStation() {
                return station;
        }
}