Subversion Repositories eFlore/Archives.cel-v2

Rev

Blame | Last modification | View Log | RSS feed

package org.tela_botanica.client.modeles;

/**
 * 
 * Classe representant un element du referentiel commune ou localite
 * 
 */

public class ReferentielCommune {


        private String commune=null;
        private String departement=null;
        
        
        public ReferentielCommune() {
        }

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

                
        }



        public String getCommune() {
                return commune;
        }


        public String getDepartement() {
                return departement;
        }


        

}