Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 388 → Rev 389

/trunk/src/org/tela_botanica/client/Mediateur.java
340,10 → 340,7
while (itPersonne.hasNext()) {
Personne personneCourante = itPersonne.next();
idStr += personneCourante.getId();
if (itPersonne.hasNext()) {
idStr +=", ";
}
idStr +=",";
}
modele.supprimerPersonne(vue, idStr);
}
360,6 → 357,10
modele.selectionnerPersonne(vue, null, projetId, nomComplet);
}
public void enregistrerPersonne(Rafraichissable vue, Personne personne){
modele.enregistrerPersonne(vue, personne);
}
//+----------------------------------------------------------------------------------------------------------------+
// GESTION DES VALEURS ET LISTES
//+----------------------------------------------------------------------------------------------------------------+