Subversion Repositories eFlore/Applications.coel

Rev

Rev 126 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 126 Rev 138
Line 1... Line 1...
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
import java.util.LinkedHashMap;
3
import java.util.LinkedHashMap;
4
 
-
 
5
import com.google.gwt.json.client.JSONArray;
4
 
6
import com.google.gwt.json.client.JSONNumber;
-
 
Line 7... Line 5...
7
import com.google.gwt.json.client.JSONObject;
5
import com.google.gwt.json.client.JSONArray;
8
import com.google.gwt.json.client.JSONString;
6
import com.google.gwt.json.client.JSONObject;
9
 
7
 
10
/**
8
/**
Line 46... Line 44...
46
		for (int i = 0; i < taillemax; i++) {
44
		for (int i = 0; i < taillemax; i++) {
47
			JSONObject personneCourante = personneListe.get(i).isObject() ;
45
			JSONObject personneCourante = personneListe.get(i).isObject() ;
Line 48... Line 46...
48
			
46
			
49
			if (personneCourante != null)	{
47
			if (personneCourante != null)	{
50
				Personne personne = new Personne(personneCourante);
48
				Personne personne = new Personne(personneCourante);
51
				this.put(personne.getId(), personne);
49
				this.put(personne.getId(), personne);				
52
			}
50
			}
Line 53... Line 51...
53
		}
51
		}