Package org.pentaho.reporting.engine.classic.core.modules.output.table.xls.helper

Examples of org.pentaho.reporting.engine.classic.core.modules.output.table.xls.helper.ExcelOutputProcessorMetaData


    if (resourceManager == null)
    {
      throw new NullPointerException();
    }

    this.metaData = new ExcelOutputProcessorMetaData(config, ExcelOutputProcessorMetaData.PAGINATION_NONE);
    this.flowSelector = new DisplayAllFlowSelector();

    this.printer = new ExcelPrinter();
    this.printer.init(config, metaData, outputStream, resourceManager);
  }
View Full Code Here


    {
      throw new NullPointerException();
    }

    this.physicalPages = new ArrayList();
    this.metaData = new ExcelOutputProcessorMetaData(configuration, ExcelOutputProcessorMetaData.PAGINATION_FULL);
    this.flowSelector = new DisplayAllFlowSelector();

    this.printer = new ExcelPrinter();
    this.printer.init(configuration, metaData, outputStream, resourceManager);
  }
View Full Code Here

    {
      throw new NullPointerException();
    }


    this.metaData = new ExcelOutputProcessorMetaData(config, ExcelOutputProcessorMetaData.PAGINATION_MANUAL);
    this.flowSelector = new DisplayAllFlowSelector();

    this.printer = new ExcelPrinter();
    this.printer.init(config, metaData, outputStream, resourceManager);
  }
View Full Code Here

    LogicalPageBox logicalPageBox = DebugReportRunner.layoutPage(report, 0);

    RenderNode second = MatchFactory.findElementByName(logicalPageBox, "second");
    assertTrue(second instanceof RenderBox);

    ExcelOutputProcessorMetaData metaData = new ExcelOutputProcessorMetaData(ExcelOutputProcessorMetaData.PAGINATION_FULL);
    metaData.initialize(report.getConfiguration());

    XSSFWorkbook hssfWorkbook = new XSSFWorkbook();
    ExcelColorProducer colorProducer = new StaticExcelColorSupport();
    ExcelFontFactory ff = new ExcelFontFactory(hssfWorkbook, colorProducer);
    CreationHelper ch = hssfWorkbook.getCreationHelper();
View Full Code Here

    sheetLayout.ensureYMapping(StrictGeomUtility.toInternalValue(0), Boolean.FALSE);
    sheetLayout.ensureYMapping(StrictGeomUtility.toInternalValue(100), Boolean.FALSE);
    sheetLayout.ensureYMapping(StrictGeomUtility.toInternalValue(500), Boolean.FALSE);
    sheetLayout.ensureYMapping(StrictGeomUtility.toInternalValue(600), Boolean.FALSE);

    ExcelOutputProcessorMetaData metaData =
        new ExcelOutputProcessorMetaData(ExcelOutputProcessorMetaData.PAGINATION_MANUAL);
    metaData.initialize(ClassicEngineBoot.getInstance().getGlobalConfig());
    ResourceManager resourceManager = new ResourceManager();

    excelPrinter = new FastExcelPrinter(sheetLayout);
    excelPrinter.setUseXlsxFormat(false);
    excelPrinter.init(metaData, resourceManager, new MasterReport());
View Full Code Here

    if (resourceManager == null)
    {
      throw new NullPointerException();
    }

    this.metaData = new ExcelOutputProcessorMetaData(ExcelOutputProcessorMetaData.PAGINATION_NONE);
    this.flowSelector = new DisplayAllFlowSelector();

    this.printer = new ExcelPrinter(outputStream, resourceManager);
  }
View Full Code Here

    {
      throw new NullPointerException();
    }

    this.physicalPages = new ArrayList<PhysicalPageKey>();
    this.metaData = new ExcelOutputProcessorMetaData(ExcelOutputProcessorMetaData.PAGINATION_FULL);
    this.flowSelector = new DisplayAllFlowSelector();

    this.printer = new ExcelPrinter(outputStream, resourceManager);
  }
View Full Code Here

    {
      throw new NullPointerException();
    }


    this.metaData = new ExcelOutputProcessorMetaData(ExcelOutputProcessorMetaData.PAGINATION_MANUAL);
    this.flowSelector = new DisplayAllFlowSelector();

    this.printer = new ExcelPrinter(outputStream, resourceManager);
  }
View Full Code Here

  {
    private OutputProcessorMetaData metaData;

    private ExcelDataOutputProcessor()
    {
      metaData = new ExcelOutputProcessorMetaData(ExcelOutputProcessorMetaData.PAGINATION_NONE);
    }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.output.table.xls.helper.ExcelOutputProcessorMetaData

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.