Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1496 Rev 1501
Line 322... Line 322...
322
			for (Image image : images) {
322
			for (Image image : images) {
323
				ImagePresenteur imagePresenteur = new ImagePresenteur(image, CacheClient.getInstance().getProtocoleCourant(), new ImageVue());
323
				ImagePresenteur imagePresenteur = new ImagePresenteur(image, CacheClient.getInstance().getProtocoleCourant(), new ImageVue());
324
				imagePresenteur.go(vue.getImageTable());
324
				imagePresenteur.go(vue.getImageTable());
325
			}
325
			}
326
		}
326
		}
-
 
327
		CacheClient.getInstance().mettreAjourUrlCourante();
327
		vue.stopChargement();
328
		vue.stopChargement();
328
	}
329
	}
Line 329... Line 330...
329
 
330
 
330
	private void creerWidgetPagination(int nbImages) {
331
	private void creerWidgetPagination(int nbImages) {
Line 354... Line 355...
354
 
355
 
355
	public void chargerEtAfficherImagesPageEnCours() {
356
	public void chargerEtAfficherImagesPageEnCours() {
356
		final int debut = (CacheClient.getInstance().getPageCouranteRechercheImage() - 1) * CacheClient.getInstance().getPasPagination();
357
		final int debut = (CacheClient.getInstance().getPageCouranteRechercheImage() - 1) * CacheClient.getInstance().getPasPagination();
357
		final int fin = (CacheClient.getInstance().getPageCouranteRechercheImage()) * CacheClient.getInstance().getPasPagination();
358
		final int fin = (CacheClient.getInstance().getPageCouranteRechercheImage()) * CacheClient.getInstance().getPasPagination();
358
		chargerEtAfficherImages(debut, fin);
-
 
359
		CacheClient.getInstance().mettreAjourUrlCourante();
359
		chargerEtAfficherImages(debut, fin);
Line 360... Line 360...
360
	}
360
	}
361
 
361
 
362
	public Vue getVue() {
362
	public Vue getVue() {