Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 612 → Rev 613

/trunk/src/org/tela_botanica/client/Mediateur.java
537,12 → 537,13
 
public void afficherListePersonnes(PersonneListe personnesACharger) {
if (!(contenuPanneauCentre instanceof PersonneVue)) {
//FIXME : le test ci-dessous bloque l'éxécution lors de deux clics consécutifs
//if (!(contenuPanneauCentre instanceof PersonneVue)) {
PersonneVue personneVue = new PersonneVue(this);
contenuPanneauCentre = personneVue;
panneauCentre.add(personneVue);
}
//}
contenuPanneauCentre.rafraichir(personnesACharger);
//contenuPanneauCentre.layout();
577,12 → 578,10
}
public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId, int start, int nbElements) {
String personneId = null;
if (personne!=null) {
personneId = personne.getId();
}
modele.selectionnerPersonne(vue, personneId, projetId, null, start, nbElements);
}