Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 690 Rev 965
Line 154... Line 154...
154
 
154
 
Line 155... Line 155...
155
		String valeursFiltres[][] = getIMediateur().renvoyerFiltres();
155
		String valeursFiltres[][] = getIMediateur().renvoyerFiltres();
Line 156... Line 156...
156
 
156
 
Line 157... Line 157...
157
		int tailleFiltres = valeursFiltres.length;
157
		int tailleFiltres = valeursFiltres.length;
158
 
158
 
159
		String[][] criteres = new String[tailleFiltres + 1][2];
159
		String[][] criteres = new String[tailleFiltres][2];
Line 160... Line 160...
160
 
160
 
161
		String[] utilisateur = { "ci_ce_utilisateur",
161
		String[] utilisateur = {
162
				"" + getIMediateur().getIdentifiant() };
162
				"" + getIMediateur().getIdentifiant() };
Line 163... Line 163...
163
		criteres[0] = utilisateur;
163
		criteres[0] = utilisateur;
164
 
164
 
165
 
165
 
Line 179... Line 179...
179
		
179
		
Line 180... Line 180...
180
		int tailleFiltres = valeursFiltres.length;
180
		int tailleFiltres = valeursFiltres.length;
Line 181... Line 181...
181
		
181
		
182
		String[][] criteres2 = new String[tailleFiltres + 2][2];
182
		String[][] criteres2 = new String[tailleFiltres + 2][2];
Line 183... Line 183...
183
		
183
		
184
		String[] limite = { "ci_limite", "" + taillePage };
184
		String[] limite = { "limite", "" + taillePage };
Line 185... Line 185...
185
		String[] taillePage = { "ci_numero_page", "" + pageEncours };
185
		String[] taillePage = { "numero_page", "" + pageEncours };
Line 482... Line 482...
482
			for (int j = 0; j < taillemax; j++) {
482
			for (int j = 0; j < taillemax; j++) {
483
				// on extrait les élements du tableau
483
				// on extrait les élements du tableau
484
				if (reponse.get(j).isObject() != null) {
484
				if (reponse.get(j).isObject() != null) {
485
					JSONObject noeud = (JSONObject) reponse.get(j);
485
					JSONObject noeud = (JSONObject) reponse.get(j);
Line 486... Line 486...
486
 
486
 
487
					String id_noeud = noeud.get("cmc_id_mot_cle_utilisateur")
487
					String id_noeud = noeud.get("id_mot_cle_utilisateur")
488
							.isString().stringValue();
488
							.isString().stringValue();
489
					String mot_cle = noeud.get("cmc_mot_cle").isString()
489
					String mot_cle = noeud.get("mot_cle").isString()
490
							.stringValue();
490
							.stringValue();
491
					String parent = noeud.get("cmc_id_parent").isString()
491
					String parent = noeud.get("ce_mot_cle_utilisateur_parent").isString()
Line 492... Line 492...
492
							.stringValue();
492
							.stringValue();
Line 493... Line 493...
493
 
493