305 |
aurelien |
1 |
package org.tela_botanica.del.client.navigation.evenement.ajoutcommentaire;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.modeles.Commentaire;
|
|
|
4 |
import com.google.gwt.event.shared.GwtEvent;
|
|
|
5 |
|
|
|
6 |
public class EvenementAjoutCommentaire extends GwtEvent<GestionnaireEvenementAjoutCommentaire> {
|
|
|
7 |
|
|
|
8 |
public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementAjoutCommentaire> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementAjoutCommentaire>();
|
|
|
9 |
private Commentaire commentaire;
|
|
|
10 |
|
|
|
11 |
public EvenementAjoutCommentaire(Commentaire commentaire) {
|
|
|
12 |
this.commentaire = commentaire;
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
@Override
|
|
|
16 |
protected void dispatch(GestionnaireEvenementAjoutCommentaire handler) {
|
|
|
17 |
handler.onAjoutCommentaire(this);
|
|
|
18 |
}
|
|
|
19 |
|
|
|
20 |
@Override
|
|
|
21 |
public com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementAjoutCommentaire> getAssociatedType() {
|
|
|
22 |
return TYPE;
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
public Commentaire getCommentaire() {
|
|
|
26 |
return commentaire;
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
public void setPropositionDetermination(Commentaire commentaire) {
|
|
|
30 |
this.commentaire = commentaire;
|
|
|
31 |
}
|
|
|
32 |
|
|
|
33 |
}
|