935 |
jpm |
1 |
package org.tela_botanica.client.modeles.collection;
|
875 |
jpm |
2 |
|
935 |
jpm |
3 |
import org.tela_botanica.client.modeles.aDonneeListe;
|
|
|
4 |
|
875 |
jpm |
5 |
import com.google.gwt.json.client.JSONArray;
|
|
|
6 |
import com.google.gwt.json.client.JSONObject;
|
|
|
7 |
|
|
|
8 |
/**
|
|
|
9 |
* Table de hachage composée d'informations sur les Structures et les Personnes, renvoyé par un objet de type DAO
|
|
|
10 |
* La clé est une concaténation des clés primaires de la table coel_structure_a_personne séparées par un tiret "-".
|
|
|
11 |
*
|
|
|
12 |
* @author david delon
|
|
|
13 |
*
|
|
|
14 |
*/
|
|
|
15 |
public class CollectionAPersonneListe extends aDonneeListe<CollectionAPersonne> {
|
|
|
16 |
|
|
|
17 |
private static final long serialVersionUID = 1L;
|
|
|
18 |
|
|
|
19 |
public CollectionAPersonneListe() {
|
|
|
20 |
super();
|
|
|
21 |
}
|
|
|
22 |
|
|
|
23 |
public CollectionAPersonneListe(int taille) {
|
|
|
24 |
super(taille);
|
|
|
25 |
}
|
|
|
26 |
|
|
|
27 |
public CollectionAPersonneListe(JSONArray structures) {
|
|
|
28 |
super(structures.size()) ;
|
|
|
29 |
final int taillemax = structures.size();
|
|
|
30 |
|
|
|
31 |
for (int i = 0; i < taillemax; i++) {
|
|
|
32 |
JSONObject collectionAPersonneCourante = structures.get(i).isObject() ;
|
|
|
33 |
|
|
|
34 |
if (collectionAPersonneCourante != null) {
|
|
|
35 |
CollectionAPersonne collectionAPersonne = new CollectionAPersonne(collectionAPersonneCourante);
|
|
|
36 |
this.put(collectionAPersonne.getId(), collectionAPersonne);
|
|
|
37 |
}
|
|
|
38 |
}
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
}
|