Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1040 Rev 1041
Line 198... Line 198...
198
 
198
 
199
	//+----------------------------------------------------------------------------------------------------------------+
199
	//+----------------------------------------------------------------------------------------------------------------+
200
	//												GESTION DES COLLECTIONS
200
	//												GESTION DES COLLECTIONS
Line 201... Line 201...
201
	//+----------------------------------------------------------------------------------------------------------------+
201
	//+----------------------------------------------------------------------------------------------------------------+
202
	
202
	
203
	public void selectionnerCollection(Rafraichissable vueARafraichir, String projetId, String collectionId) {
203
	public void selectionnerCollection(Rafraichissable vueARafraichir, String projetId, String collectionId, String nom, int start, int nbElements) {
204
		CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
204
		CollectionAsyncDao cDao = new CollectionAsyncDao(vueARafraichir);
Line 205... Line 205...
205
		cDao.selectionner(projetId, collectionId);
205
		cDao.selectionner(projetId, collectionId, nom, start, nbElements);
206
	}
206
	}
207
	
207