Package org.pentaho.reporting.engine.classic.core.layout

Examples of org.pentaho.reporting.engine.classic.core.layout.DefaultLayoutSupport


   * of the report will be ignored and your export will not work as expected.
   */
  public DefaultProcessingContext()
  {
    outputProcessorMetaData = new GenericOutputProcessorMetaData();
    layoutSupport = new DefaultLayoutSupport(true, true);
    resourceBundleFactory = new DefaultResourceBundleFactory();
    configuration = ClassicEngineBoot.getInstance().getGlobalConfig();
    resourceManager = new ResourceManager();
    resourceManager.registerDefaults();
    reportEnvironment = new DefaultReportEnvironment(configuration);
View Full Code Here


  }

  public DefaultProcessingContext(final MasterReport report) throws ReportProcessingException
  {
    this(new GenericOutputProcessorMetaData(report.getConfiguration()),
        new DefaultLayoutSupport(true, true),
        report.getResourceBundleFactory(),
        report.getConfiguration(),
        report.getResourceManager(),
        report.getContentBase(),
        report.getBundle().getMetaData(),
View Full Code Here

                                  final ResourceKey contentBase,
                                  final DocumentMetaData metaData,
                                  final ReportEnvironment environment) throws ReportProcessingException
  {
    this(new GenericOutputProcessorMetaData(configuration),
        new DefaultLayoutSupport(true, true),
        resourceBundleFactory,
        configuration,
        resourceManager,
        contentBase,
        metaData,
View Full Code Here

    else
    {
      documentMetaData = new MemoryDocumentMetaData();
    }
    return new DefaultProcessingContext
        (metaData, new DefaultLayoutSupport(maxLineHeightUsed, imageResolutionMapping),
            report.getResourceBundleFactory(), report.getConfiguration(),
            report.getResourceManager(), report.getContentBase(), documentMetaData,
            report.getReportEnvironment());
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.layout.DefaultLayoutSupport

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.