Subversion Repositories eFlore/Applications.del

Rev

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

Rev 361 Rev 365
Line 102... Line 102...
102
			public void actualiserPasCache(int pas) {
102
			public void actualiserPasCache(int pas) {
103
				CacheClient.getInstance().setPasPagination(pas);
103
				CacheClient.getInstance().setPasPagination(pas);
104
			}
104
			}
105
		};
105
		};
106
		pagination.go(vue.getPanneauPagination());
106
		pagination.go(vue.getPanneauPagination());
-
 
107
		
-
 
108
		PaginationPresenteur paginationHaut = new PaginationPresenteur(nbImages, CacheClient.getInstance().getPasPagination()) {
-
 
109
 
-
 
110
			@Override
-
 
111
			public void changerPage(int debut, int fin) {
-
 
112
				chargerEtAfficherImages(debut, fin);
-
 
113
				CacheClient.getInstance().setPageCouranteRechercheImages(getPageCourante());
-
 
114
			}
-
 
115
 
-
 
116
			@Override
-
 
117
			public void actualiserPasCache(int pas) {
-
 
118
				CacheClient.getInstance().setPasPagination(pas);
-
 
119
			}
-
 
120
		};
-
 
121
		paginationHaut.go(vue.getPanneauPaginationHaut());
107
	}
122
	}
Line 108... Line 123...
108
 
123