Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 580 → Rev 581

/trunk/src/org/tela_botanica/del/client/composants/moteurrecherche/MoteurRechercheVue.java
31,7 → 31,7
@UiField
Button boutonRecherche, boutonRechercheAvancee, boutonFermer, boutonVider;
@UiField
TextBox recherchePrincipale, contientMots, departement, famille, genre, tag, motCle, auteur, date;
TextBox recherchePrincipale, contientMots, departement, famille, genre, motCle, auteur, date;
 
public MoteurRechercheVue(String labelRecherche) {
initWidget(uiBinder.createAndBindUi(this));
112,10 → 112,6
return genre.getText();
}
 
public String getTag() {
return tag.getText();
}
 
public String getMotCle() {
return motCle.getText();
}
152,7 → 148,6
departement.setText(informationsRecherche.getDepartement());
famille.setText(informationsRecherche.getFamille());
genre.setText(informationsRecherche.getGenre());
tag.setText(informationsRecherche.getTag());
motCle.setText(informationsRecherche.getMotClef());
auteur.setText(informationsRecherche.getAuteur());
date.setText(informationsRecherche.getDate());
215,11 → 210,6
}
 
@Override
public HasKeyPressHandlers getChampsTag() {
return tag;
}
 
@Override
public HasKeyPressHandlers getChampsMotCle() {
return motCle;
}