Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1369 Rev 1373
Line 273... Line 273...
273
				abreviationStr = abv;
273
				abreviationStr = abv;
274
				int indexPoint = abreviationStr.indexOf(".", 0);
274
				int indexPoint = abreviationStr.indexOf(".", 0);
275
				abreviationStr = abreviationStr.substring(0, indexPoint);
275
				abreviationStr = abreviationStr.substring(0, indexPoint);
276
				id = id+abreviationStr; 
276
				id = id+abreviationStr; 
277
			}
277
			}
278
			
-
 
279
			// réinitialisation du compteur
-
 
280
			cptPage = 0;
-
 
Line 281... Line 278...
281
 
278
 
282
			/** On retourne la liste à la vue **/ 		
279
			/** On retourne la liste à la vue **/ 		
283
			if (ontologieCache.get(id) != null) {
280
			if (ontologieCache.get(id) != null) {
284
				if (vueARafraichir instanceof Sequenceur)	{
281
				if (vueARafraichir instanceof Sequenceur)	{
285
					if (Mediateur.DEBUG) System.out.println("<-- ValeurListeAsyncDao > Liste en cache, retour au sequenceur");
282
					if (Mediateur.DEBUG) System.out.println("<-- ValeurListeAsyncDao > Liste en cache, retour au sequenceur (cptPage="+cptPage+")");
286
					vueARafraichir = (Sequenceur) vueARafraichir;
283
					vueARafraichir = (Sequenceur) vueARafraichir;
287
					Reponse reponse = new Reponse(ontologieCache.get(id), seqId);
284
					Reponse reponse = new Reponse(ontologieCache.get(id), seqId);
288
					vueARafraichir.rafraichir(reponse);
285
					vueARafraichir.rafraichir(reponse);
289
				} else {
286
				} else {
290
					if (Mediateur.DEBUG) System.out.println("<-- ValeurListeAsyncDao > Liste en cache, retour à "+vueARafraichir.getClass().toString());
287
					if (Mediateur.DEBUG) System.out.println("<-- ValeurListeAsyncDao > Liste en cache, retour à "+vueARafraichir.getClass().toString());
291
					vueARafraichir.rafraichir(ontologieCache.get(id));
288
					vueARafraichir.rafraichir(ontologieCache.get(id));
292
				}
289
				}
-
 
290
			}
-
 
291
			
-
 
292
			// réinitialisation du compteur
293
			}
293
			cptPage = 0;
294
		}
294
		}
295
	}	
295
	}