Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1046 Rev 1048
Line 1222... Line 1222...
1222
			MessageBox.confirm("Supprimer un commentaire", message, listenerSuppression);
1222
			MessageBox.confirm("Supprimer un commentaire", message, listenerSuppression);
1223
		}
1223
		}
1224
	}
1224
	}
Line 1225... Line 1225...
1225
	
1225
	
-
 
1226
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId) {
-
 
1227
		selectionnerCommentaire(vueARafraichir, commentaireId, null, 0, nbElements);
-
 
1228
	}
1226
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId) {
1229
	public void selectionnerCommentaire(Rafraichissable vueARafraichir, String commentaireId, String titre, int pageCourante, int nbElements) {
1227
		modele.selectionnerCommentaire(vueARafraichir, commentaireId, getProjetId(), null);
1230
		modele.selectionnerCommentaire(vueARafraichir, commentaireId, getProjetId(), titre, pageCourante, nbElements);
Line 1228... Line 1231...
1228
	}
1231
	}
1229
	
1232
	
1230
	public void selectionnerCommentaireParTitre(Rafraichissable vueARafraichir, String titre) {
1233
	public void selectionnerCommentaireParTitre(Rafraichissable vueARafraichir, String titre) {
Line 1231... Line 1234...
1231
		modele.selectionnerCommentaire(vueARafraichir, null, getProjetId(), titre);
1234
		selectionnerCommentaire(vueARafraichir, null, titre, 0, nbElements);
1232
	}
1235
	}
1233
	
1236