Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 363 Rev 382
Line 33... Line 33...
33
		for (int i = 0; i < taillemax; i++) {
33
		for (int i = 0; i < taillemax; i++) {
34
			JSONObject structureCourante = structures.get(i).isObject() ;
34
			JSONObject structureCourante = structures.get(i).isObject() ;
Line 35... Line 35...
35
			
35
			
36
			if (structureCourante != null)	{
36
			if (structureCourante != null)	{
-
 
37
				Structure structure = new Structure(structureCourante);
-
 
38
				StructureValorisation valorisation = new StructureValorisation(structureCourante);
-
 
39
				structure.setValorisation(valorisation);
-
 
40
				StructureConservation conservation = new StructureConservation(structureCourante);
37
				Structure structure = new Structure(structureCourante);
41
				structure.setConservation(conservation);
38
				this.put(structure.getId(), structure);
42
				this.put(structure.getId(), structure);
39
			}
43
			}
40
		}
44
		}