38,17 → 38,17 |
* Constructeur pour une liste d'institutions |
* @param dates |
*/ |
public StructureListe(JSONArray institutions) |
public StructureListe(JSONArray structures) |
{ |
super(institutions.size()) ; |
final int taillemax = institutions.size(); |
super(structures.size()) ; |
final int taillemax = structures.size(); |
|
for (int i = 0; i < taillemax; i++) { |
JSONObject institutionCourante = institutions.get(i).isObject() ; |
JSONObject structureCourante = structures.get(i).isObject() ; |
|
if (institutionCourante != null) { |
Structure institution = new Structure(institutionCourante); |
this.put(institution.getId(), institution); |
if (structureCourante != null) { |
Structure structure = new Structure(structureCourante); |
this.put(structure.getId(), structure); |
} |
} |
} |