690 |
gduche |
1 |
package org.tela_botanica.del.client.vues.plateformedetermination.formulairecommentaire;
|
|
|
2 |
|
|
|
3 |
import com.google.gwt.core.client.GWT;
|
|
|
4 |
import com.google.gwt.uibinder.client.UiBinder;
|
|
|
5 |
import com.google.gwt.uibinder.client.UiField;
|
|
|
6 |
import com.google.gwt.user.client.ui.Button;
|
|
|
7 |
import com.google.gwt.user.client.ui.Composite;
|
|
|
8 |
import com.google.gwt.user.client.ui.HasText;
|
|
|
9 |
import com.google.gwt.user.client.ui.TextArea;
|
|
|
10 |
import com.google.gwt.user.client.ui.TextBox;
|
|
|
11 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
12 |
|
|
|
13 |
public class FormulaireCommentaireVue extends Composite implements FormulaireCommentairePresenteur.Vue {
|
|
|
14 |
|
|
|
15 |
@UiField
|
|
|
16 |
public TextBox nom, prenom, courriel;
|
|
|
17 |
|
|
|
18 |
@UiField
|
|
|
19 |
public TextArea commentaire;
|
|
|
20 |
|
|
|
21 |
@UiField
|
|
|
22 |
public Button boutonValidationCommentaire;
|
|
|
23 |
|
|
|
24 |
interface FormulairePropositionUIiBinder extends UiBinder<Widget, FormulaireCommentaireVue> {
|
|
|
25 |
};
|
|
|
26 |
|
|
|
27 |
FormulairePropositionUIiBinder uiBinder = GWT.create(FormulairePropositionUIiBinder.class);
|
|
|
28 |
|
|
|
29 |
public FormulaireCommentaireVue() {
|
|
|
30 |
initWidget(uiBinder.createAndBindUi(this));
|
|
|
31 |
}
|
|
|
32 |
|
|
|
33 |
@Override
|
|
|
34 |
public String getNom() {
|
|
|
35 |
return nom.getText();
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
@Override
|
|
|
39 |
public String getPrenom() {
|
|
|
40 |
return prenom.getText();
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
@Override
|
|
|
44 |
public TextArea getCommentaire() {
|
|
|
45 |
return commentaire;
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
@Override
|
|
|
49 |
public Button getBoutonValidationCommentaire() {
|
|
|
50 |
return boutonValidationCommentaire;
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
@Override
|
|
|
54 |
public void afficherStyleErreurNom(String styleErreur) {
|
|
|
55 |
nom.addStyleName(styleErreur);
|
|
|
56 |
commentaire.addStyleName(styleErreur);
|
|
|
57 |
}
|
|
|
58 |
|
|
|
59 |
@Override
|
|
|
60 |
public void supprimerStyleErreurNom(String styleErreur) {
|
|
|
61 |
nom.removeStyleName(styleErreur);
|
|
|
62 |
commentaire.removeStyleName(styleErreur);
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
@Override
|
|
|
66 |
public void afficherStyleErreurPrenom(String styleErreur) {
|
|
|
67 |
prenom.addStyleName(styleErreur);
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
@Override
|
|
|
71 |
public void supprimerStyleErreurPrenom(String styleErreur) {
|
|
|
72 |
prenom.removeStyleName(styleErreur);
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
@Override
|
|
|
76 |
public void afficherNomPrenomEtDesactiver(String nom, String prenom, String courriel) {
|
|
|
77 |
this.nom.setText(nom);
|
|
|
78 |
this.nom.setEnabled(false);
|
|
|
79 |
this.prenom.setText(prenom);
|
|
|
80 |
this.prenom.setEnabled(false);
|
|
|
81 |
this.courriel.setText("courriel");
|
|
|
82 |
this.courriel.setEnabled(false);
|
|
|
83 |
}
|
|
|
84 |
|
|
|
85 |
@Override
|
|
|
86 |
public String getCourriel() {
|
|
|
87 |
return courriel.getText();
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
@Override
|
|
|
91 |
public HasText getNomObjet() {
|
|
|
92 |
return nom;
|
|
|
93 |
}
|
|
|
94 |
|
|
|
95 |
@Override
|
|
|
96 |
public HasText getPrenomObjet() {
|
|
|
97 |
return prenom;
|
|
|
98 |
}
|
|
|
99 |
|
|
|
100 |
@Override
|
|
|
101 |
public void afficherStyleErreurCommentaire(String styleErreur) {
|
|
|
102 |
commentaire.removeStyleName(styleErreur);
|
|
|
103 |
}
|
|
|
104 |
|
|
|
105 |
@Override
|
|
|
106 |
public void supprimerStyleErreurCommentaire(String styleErreur) {
|
|
|
107 |
commentaire.removeStyleName(styleErreur);
|
|
|
108 |
}
|
|
|
109 |
}
|