Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 137 → Rev 138

/trunk/src/org/tela_botanica/client/modeles/PersonneListe.java
3,9 → 3,7
import java.util.LinkedHashMap;
 
import com.google.gwt.json.client.JSONArray;
import com.google.gwt.json.client.JSONNumber;
import com.google.gwt.json.client.JSONObject;
import com.google.gwt.json.client.JSONString;
 
/**
* Table de hachage composée d'informations sur les Valeurs des listes, renvoyé par un objet de type DAO
48,7 → 46,7
if (personneCourante != null) {
Personne personne = new Personne(personneCourante);
this.put(personne.getId(), personne);
this.put(personne.getId(), personne);
}
}
/trunk/src/org/tela_botanica/client/modeles/PersonneListeAsyncDao.java
62,7 → 62,8
final JSONArray reponse = responseValue.isArray();
// Transformation du tableau JSON réponse en ListePersonnes
personnes = new PersonneListe(reponse);
personnes = new PersonneListe(reponse);
}
}