Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1313 → Rev 1314

/trunk/src/org/tela_botanica/client/observation/ObservationModele.java
528,12 → 528,12
motsCles += ";";
}
obsAlier += ","+idsObsALier[i];
motsCles += motsClesEnCours;
nbObs++;
Observation m = cacheObservation.get(idsObsALier[i]);
obsAlier += ","+m.getId();
if(m.getMotsCles() != null && !m.getMotsCles().endsWith(";") && !motsCles.startsWith(";")) {
motsCles += ";";
714,6 → 714,10
public ListeObservation getCacheObservation() {
return cacheObservation ;
}
public String getIdPourOrdreObs(String ordreObs) {
return (cacheObservation.get(ordreObs) != null) ? cacheObservation.get(ordreObs).getId() : null;
}
 
public void obtenirInformationCommune(Rafraichissable r, String nomCommune, String codePostal) {
InformationCommuneDAO infocommune = new InformationCommuneDAO(r);