| 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, String titre) {
|
378 |
public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String projetId, String titre, int pageCourante, int nbElements) {
|
| 379 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
379 |
CommentaireAsyncDao cDao = new CommentaireAsyncDao(vueARafraichir);
|
| Line 380... |
Line 380... |
| 380 |
cDao.selectionner(commentaireId, projetId, titre);
|
380 |
cDao.selectionner(commentaireId, projetId, titre, pageCourante, nbElements);
|
| 381 |
}
|
381 |
}
|
| 382 |
|
382 |
|