use of fr.univlorraine.ecandidat.views.windows.CtrCandShowHistoWindow.DeleteAvisWindowListener in project esup-ecandidat by EsupPortail.
the class CandidatureCtrCandController method showHistoAvis.
/**
* Voir l'historique des avis d'une candidature
* @param candidature
* @param changeCandidatureWindowListener
*/
public void showHistoAvis(final Candidature candidature, final List<DroitFonctionnalite> listeDroit, final ChangeCandidatureWindowListener changeCandidatureWindowListener) {
final CtrCandShowHistoWindow showHistoWindow = new CtrCandShowHistoWindow(candidature, listeDroit);
showHistoWindow.addDeleteAvisWindowListener(new DeleteAvisWindowListener() {
@Override
public void delete(final Candidature candidature) {
if (changeCandidatureWindowListener != null) {
final List<Candidature> listeCandidature = new ArrayList<>();
listeCandidature.add(candidature);
changeCandidatureWindowListener.action(listeCandidature);
}
}
});
UI.getCurrent().addWindow(showHistoWindow);
}
Aggregations