Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 127 → Rev 128

/src/org/tela_botanica/del/client/vues/plateformedetermination/formulaireproposition/FormulairePropositionVue.java
28,7 → 28,7
public TextBox autreProposition = new TextBox();
@UiField(provided = true)
public TextBox pourcentageConfiance = new TextBox();
public ListBox pourcentageConfiance = new ListBox();
@UiField(provided = true)
public TextArea commentaires = new TextArea();
51,6 → 51,15
choixProposition.addItem(it.next());
}
}
public void chargerPourcentagesConfiance(ArrayList<String> pourcentagesConfiance) {
pourcentageConfiance.clear();
for(Iterator<String> it = pourcentagesConfiance.iterator(); it.hasNext();) {
pourcentageConfiance.addItem(it.next());
}
}
 
public TextBox getNomPrenom() {
return nomPrenom;
64,7 → 73,7
return autreProposition;
}
 
public TextBox getPourcentageConfiance() {
public ListBox getPourcentageConfiance() {
return pourcentageConfiance;
}