Package org.xrace.view.core.reports

Examples of org.xrace.view.core.reports.ReportDownloadPage


    {
      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()
View Full Code Here


      private static final long serialVersionUID = 1L;

      @Override
      public void onSubmit()
      {
        setResponsePage(new ReportDownloadPage(new TransactionsReport(
            options, secteurService, transactionService)));
      }
    });

    add(form);
View Full Code Here

TOP

Related Classes of org.xrace.view.core.reports.ReportDownloadPage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.