Subversion Repositories eFlore/Applications.del

Compare Revisions

Regard whitespace Rev 670 → Rev 671

/trunk/src/org/tela_botanica/del/client/composants/moteurrecherche/MoteurRecherchePresenteur.java
85,6 → 85,10
 
public HasKeyPressHandlers getChampsDate();
 
public HasKeyPressHandlers getChampsDepartement();
public HasKeyPressHandlers getChampsContientMots();
 
}
 
private Vue vue;
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;
}
}