{
private static final long serialVersionUID = 1L;
public Page getPage()
{
return new ReportDownloadPage(new ArticlesSommaireReport(
evenement, articleService));
}
public Class getPageIdentity()
{
return ReportDownloadPage.class;
}
}).setVisible(!isNew));
this.add(new PageLink("articlesParPersonne", new IPageLink()
{
private static final long serialVersionUID = 1L;
public Page getPage()
{
return new ReportDownloadPage(
new ArticlesParPersonneSommaireReport(evenement,
articleService, evenementService));
}
public Class getPageIdentity()
{
return ReportDownloadPage.class;
}
}).setVisible(!isNew));
this.add(new PageLink("inscritsComplete", new IPageLink()
{
private static final long serialVersionUID = 1L;
public Page getPage()
{
return new ReportDownloadPage(
new InscriptionsEvenementCompleteReport(evenement,
dossierInscriptionService));
}
public Class getPageIdentity()
{
return ReportDownloadPage.class;
}
}).setVisible(!isNew));
this.add(new PageLink("inscritsAbrege", new IPageLink()
{
private static final long serialVersionUID = 1L;
public Page getPage()
{
return new ReportDownloadPage(
new InscriptionsEvenementAbregeReport(evenement,
dossierInscriptionService));
}
public Class getPageIdentity()