Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 457 → Rev 456

/trunk/src/org/tela_botanica/del/client/composants/moteurrecherche/MoteurRechercheVue.java
26,13 → 26,13
private String labelRecherche = "";
 
@UiField
Panel rechercheAvancee, taxon, commune;
Panel rechercheAvancee, taxon;
@UiField
Label lienRechercheAvancee, recherchePrecedente;
@UiField
Button boutonRecherche, boutonRechercheAvancee, boutonFermer, boutonVider;
@UiField
TextBox recherchePrincipale, departement, famille, genre, tag, motCle, auteur, date;
TextBox recherchePrincipale, departement, commune, famille, genre, tag, motCle, auteur, date;
 
public MoteurRechercheVue(String labelRecherche) {
initWidget(uiBinder.createAndBindUi(this));
96,15 → 96,11
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());
172,8 → 168,8
return departement.getText();
}
 
public HasWidgets getCommune() {
return commune;
public String getCommune() {
return commune.getText();
}
 
public HasWidgets getTaxon() {