Rev 305 | Rev 663 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.modeles;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class Commentaire extends InterventionForum implements PossesseurDeCommentaires {
private String commentaire;
public List<Commentaire> listeCommentaires = new ArrayList<Commentaire>();
public Commentaire(String auteur, Date date, String commentaire) {
setAuteur(auteur);
setDate(date);
this.commentaire = commentaire;
}
public String getCommentaire() {
return commentaire;
}
public void setCommentaire(String commentaire) {
this.commentaire = commentaire;
}
public List<Commentaire> getListeCommentaires() {
return listeCommentaires;
}
@Override
public void setListeCommentaires(List<Commentaire> listeCommentaires) {
this.listeCommentaires = listeCommentaires;
}
@Override
public void ajouterCommentaire(Commentaire commentaire) {
listeCommentaires.add(commentaire);
}
}