Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 937 Rev 964
Line 423... Line 423...
423
			for (int j = 0; j < taillemax; j++) {
423
			for (int j = 0; j < taillemax; j++) {
424
				// on extrait les élements du tableau
424
				// on extrait les élements du tableau
425
				if (reponse.get(j).isObject() != null) {
425
				if (reponse.get(j).isObject() != null) {
426
					JSONObject noeud = (JSONObject) reponse.get(j);
426
					JSONObject noeud = (JSONObject) reponse.get(j);
Line 427... Line 427...
427
 
427
 
428
					String id_noeud = noeud.get("cmc_id_mot_cle_utilisateur")
428
					String id_noeud = noeud.get("id_mot_cle_utilisateur")
429
							.isString().stringValue();
429
							.isString().stringValue();
430
					String mot_cle = noeud.get("cmc_mot_cle").isString()
430
					String mot_cle = noeud.get("mot_cle").isString()
431
							.stringValue();
431
							.stringValue();
432
					String parent = noeud.get("cmc_id_parent").isString()
432
					String parent = noeud.get("ce_mot_cle_utilisateur_parent").isString()
Line 433... Line 433...
433
							.stringValue();
433
							.stringValue();
Line 434... Line 434...
434
 
434