Examples of ExcelResource


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

  public PreparationPreCoursePage(final Course course)
  {
    super();

    add(new ResourceLink("complete", new ExcelResource(
        new InscriptionsCompleteReport(course,
            dossierInscriptionService))));
    add(new ResourceLink("summary", new ExcelResource(
        new InscriptionsSommaireReport(course,
            dossierInscriptionService))));
    add(new ResourceLink("equipes",
        new ExcelResource(new InscriptionsEquipeReport(course,
            dossierInscriptionService))));
    add(new ResourceLink("imprimable", new ExcelResource(
        new InscriptionsImprimableReport(course,
            dossierInscriptionService))));
    add(new ResourceLink("geco", new ExcelResource(
        new InscriptionsGecoReport(course, dossierInscriptionService))));

    add(new Link("assignPlaques")
    {
      private static final long serialVersionUID = 1L;
View Full Code Here

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

    final ImportationDonneesTerrain importationDonneesTerrain = importationDonneesTerrainService
        .find(importationDonneesTerrainId);

    add(new ImportationDonneesTerrainLineDataViewPanel("linesDataView",
        importationDonneesTerrain.getLines()));
    add(new ResourceLink("download", new ExcelResource(
        new ImportationResultReport(importationDonneesTerrain))
        .setCacheable(false)));
    add(new PageLink("merge", MergeTypeChoicePage.class));

    this.add(new PageLink("gestionPlaques", new IPageLink()
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.