Examples of startSection()


Examples of org.pentaho.reporting.engine.classic.core.layout.StreamingRenderer.startSection()

                                   final OutputProcessor outputTarget)
      throws ReportProcessingException, ContentProcessingException
  {
    StreamingRenderer renderer = new StreamingRenderer(outputTarget);
    renderer.startReport(band.getReportDefinition(), runtime.getProcessingContext(), new DefaultPerformanceMonitorContext());
    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    renderer.add(band, runtime);
    renderer.endSection();
    renderer.endReport();
    renderer.applyAutoCommit();
    if (renderer.validatePages() == Renderer.LayoutResult.LAYOUT_UNVALIDATABLE)
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.build.DefaultLayoutModelBuilder.startSection()

    final DefaultRenderNodeFactory renderNodeFactory = new DefaultRenderNodeFactory();
    renderNodeFactory.initialize(new DebugOutputProcessorMetaData());

    final RenderBox parentBox = new BlockRenderBox();
    builder.initialize(new DefaultProcessingContext(), parentBox, renderNodeFactory);
    builder.startSection();

    ReportFooter reportFooter = new ReportFooter();
    reportFooter.setComputedStyle(new SimpleStyleSheet(reportFooter.getDefaultStyleSheet()));
    builderStrategy.add(new DebugExpressionRuntime(), builder, reportFooter, new ArrayList<InlineSubreportMarker>());
    builderStrategy.add(new DebugExpressionRuntime(), builder, reportFooter, new ArrayList<InlineSubreportMarker>());
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.build.DefaultLayoutModelBuilder.startSection()

    final DefaultRenderNodeFactory renderNodeFactory = new DefaultRenderNodeFactory();
    renderNodeFactory.initialize(new DebugOutputProcessorMetaData());

    final RenderBox parentBox = new BlockRenderBox();
    builder.initialize(new DefaultProcessingContext(), parentBox, renderNodeFactory);
    builder.startSection();

    builder.addProgressMarkerBox();
    builder.addProgressMarkerBox();
    builder.addProgressMarkerBox();
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.