Subversion Repositories eFlore/Applications.del

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

package org.tela_botanica.del.client.modeles;

import java.util.ArrayList;
import java.util.List;

public abstract class PossesseurDeCommentaires {
        public List<Commentaire> listeCommentaires = new ArrayList<Commentaire>();
        
        public List<Commentaire> getListeCommentaires() {
                return listeCommentaires;
        }

        public void setListeCommentaires(ArrayList<Commentaire> listeCommentaires) {
                this.listeCommentaires = listeCommentaires;
        }

        public void ajouterCommentaire(Commentaire commentaire) {
                this.listeCommentaires.add(commentaire);
        }
}