Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 989 Rev 997
Line 267... Line 267...
267
	}
267
	}
Line 268... Line 268...
268
 
268
 
269
	//+----------------------------------------------------------------------------------------------------------------+
269
	//+----------------------------------------------------------------------------------------------------------------+
Line 270... Line 270...
270
	// GESTION de la relation COLLECTION A COMMENTAIRE
270
	// GESTION de la relation COLLECTION A COMMENTAIRE
271
	
271
	
272
	public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String commentaireId) {
272
	public void selectionnerCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId) {
273
		CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
273
		CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
Line 274... Line 274...
274
		cacDao.selectionner(commentaireId);
274
		cacDao.selectionner(collectionId);
275
	}
275
	}
276
	
276
	
277
	public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaire collectionACommentaire) {
277
	public void modifierCollectionACommentaire(Rafraichissable vueARafraichir, CollectionACommentaire collectionACommentaire) {
Line 278... Line 278...
278
		CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
278
		CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
279
		cacDao.modifier(collectionACommentaire);
279
		cacDao.modifier(collectionACommentaire);
280
	}
280
	}
281
	
281
	
Line 282... Line 282...
282
	public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String commentaireId, CollectionACommentaire collectionACommentaire) {
282
	public void ajouterCollectionACommentaire(Rafraichissable vueARafraichir, String collectionId, CollectionACommentaire collectionACommentaire) {
283
		CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
283
		CollectionACommentaireAsyncDao cacDao = new CollectionACommentaireAsyncDao(vueARafraichir);
284
		cacDao.ajouter(commentaireId, collectionACommentaire);	
284
		cacDao.ajouter(collectionId, collectionACommentaire);	
Line 373... Line 373...
373
	
373
	
374
	//+----------------------------------------------------------------------------------------------------------------+
374
	//+----------------------------------------------------------------------------------------------------------------+
375
	//												GESTION DES COMMENTAIRES
375
	//												GESTION DES COMMENTAIRES
Line 376... Line 376...
376
	//+----------------------------------------------------------------------------------------------------------------+
376
	//+----------------------------------------------------------------------------------------------------------------+
377
	
377
	
378
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String projetId) {		
378
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String projetId, String titre) {		
379
		CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
379
		CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
Line 380... Line 380...
380
		cDao.selectionner(commentaireId, projetId);
380
		cDao.selectionner(commentaireId, projetId, titre);
381
	}
381
	}
382
	
382