Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 456 → Rev 457

/trunk/src/org/tela_botanica/del/client/composants/moteurrecherche/MoteurRechercheVue.java
26,13 → 26,13
private String labelRecherche = "";
 
@UiField
Panel rechercheAvancee, taxon;
Panel rechercheAvancee, taxon, commune;
@UiField
Label lienRechercheAvancee, recherchePrecedente;
@UiField
Button boutonRecherche, boutonRechercheAvancee, boutonFermer, boutonVider;
@UiField
TextBox recherchePrincipale, departement, commune, famille, genre, tag, motCle, auteur, date;
TextBox recherchePrincipale, departement, famille, genre, tag, motCle, auteur, date;
 
public MoteurRechercheVue(String labelRecherche) {
initWidget(uiBinder.createAndBindUi(this));
96,11 → 96,15
public void setValeurRechercheSimple(String valeurRecherche) {
recherchePrincipale.setText(valeurRecherche);
}
@Override
public void setValeurDepartement(String dpt) {
departement.setValue(dpt);
}
 
public void chargerValeursRecherchePrecedente(InformationsRecherche informationsRecherche) {
recherchePrincipale.setText(informationsRecherche.getRechercheLibre());
departement.setText(informationsRecherche.getDepartement());
commune.setText(informationsRecherche.getCommune());
famille.setText(informationsRecherche.getFamille());
genre.setText(informationsRecherche.getGenre());
tag.setText(informationsRecherche.getTag());
168,8 → 172,8
return departement.getText();
}
 
public String getCommune() {
return commune.getText();
public HasWidgets getCommune() {
return commune;
}
 
public HasWidgets getTaxon() {