Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 670 → Rev 671

/trunk/src/org/tela_botanica/del/client/composants/moteurrecherche/MoteurRecherchePresenteur.java
84,6 → 84,10
public HasKeyPressHandlers getChampsAuteur();
 
public HasKeyPressHandlers getChampsDate();
public HasKeyPressHandlers getChampsDepartement();
public HasKeyPressHandlers getChampsContientMots();
 
}
 
260,14 → 264,12
});
 
vue.getChampsAuteur().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
 
vue.getChampsDate().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
 
vue.getChampsFamille().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
 
vue.getChampsGenre().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
 
vue.getChampsMotCle().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
vue.getChampsDepartement().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
vue.getChampsContientMots().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
 
}
 
/trunk/src/org/tela_botanica/del/client/composants/moteurrecherche/MoteurRechercheVue.java
223,4 → 223,14
public HasKeyPressHandlers getChampsDate() {
return date;
}
 
@Override
public HasKeyPressHandlers getChampsDepartement() {
return departement;
}
 
@Override
public HasKeyPressHandlers getChampsContientMots() {
return contientMots;
}
}