Subversion Repositories eFlore/Applications.cel

Rev

Rev 72 | 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 parent=null;
        
        
        public EntiteGeographiqueObservation() {
        }

        
        /**
         * @param commune
         * @param departement
         */
        
        public EntiteGeographiqueObservation(String entite, String parent) {
                
                this.entite = entite;
                this.parent = parent;

                
        }



        public String getEntite() {
                return entite;
        }


        public String getParent() {
                return parent;
        }


        

}