Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 2212 |
arthur |
1 |
package org.tela_botanica.del.client.modeles;
|
|
|
2 |
|
|
|
3 |
import java.util.Date;
|
|
|
4 |
|
|
|
5 |
public class Commentaire extends InterventionForum {
|
|
|
6 |
|
|
|
7 |
private String commentaire;
|
|
|
8 |
|
|
|
9 |
public Commentaire(Contributeur contributeur, Date date, String commentaire) {
|
|
|
10 |
setContributeur(contributeur);
|
|
|
11 |
setDate(date);
|
|
|
12 |
this.commentaire = commentaire;
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
public String getCommentaire() {
|
|
|
16 |
return commentaire;
|
|
|
17 |
}
|
|
|
18 |
|
|
|
19 |
public void setCommentaire(String commentaire) {
|
|
|
20 |
this.commentaire = commentaire;
|
|
|
21 |
}
|
|
|
22 |
|
|
|
23 |
}
|