Subversion Repositories eFlore/Applications.del

Rev

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

package org.tela_botanica.del.client.modeles;

public class Protocole {

        private int id;
        private String nom;
        private String description;
        private String tag;
        private String motsClesProtocoles;

        public int getId() {
                return id;
        }

        public void setId(int id) {
                this.id = id;
        }

        public String getNom() {
                return nom;
        }

        public void setNom(String nom) {
                this.nom = nom;
        }
        
        public String getDescription() {
                return description;
        }

        public void setDescription(String description) {
                this.description = description;
        }
        
        public String getTag() {
                return tag;
        }

        public void setTag(String tag) {
                this.tag = tag;
        }
        
        public void setMotsClesProtocole(String motsClesProtocole) {
                this.motsClesProtocoles = motsClesProtocole;
        }
        
        public String getMotsClesProtocole() {
                return motsClesProtocoles;
        }

}