Examples of startSection()


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

    renderedCrosstabLayout.initialize (crosstabSpecification, group, gidx);

    outputFunction.updateFooterArea(event);
    final Renderer renderer = outputFunction.getRenderer();
    renderer.startGroup(group, event.getState().getPredictedStateCount());
    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    renderer.add(b, outputFunction.getRuntime());
    outputFunction.addSubReportMarkers(renderer.endSection());

    renderer.startGroupBody(groupBody, event.getState().getPredictedStateCount());
  }
View Full Code Here

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

    final Band b = g.getFooter();

    final Renderer renderer = outputFunction.getRenderer();
    outputFunction.updateFooterArea(event);

    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    renderer.add(b, outputFunction.getRuntime());
    outputFunction.addSubReportMarkers(renderer.endSection());
    renderer.endGroup();
   
    outputFunction.endRenderedCrosstabLayout();
View Full Code Here

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

    outputFunction.updateFooterArea(event);

    final Renderer renderer = outputFunction.getRenderer();
    renderer.startGroup(group, event.getState().getPredictedStateCount());
    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    renderer.add(b, outputFunction.getRuntime());
    outputFunction.addSubReportMarkers(renderer.endSection());

    renderer.startGroupBody(groupBody, event.getState().getPredictedStateCount());
  }
View Full Code Here

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

    final Band b = g.getFooter();

    final Renderer renderer = outputFunction.getRenderer();
    outputFunction.updateFooterArea(event);

    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    renderer.add(b, outputFunction.getRuntime());
    outputFunction.addSubReportMarkers(renderer.endSection());
    renderer.endGroup();
  }
View Full Code Here

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

    final GroupBody groupBody = group.getBody();

    outputFunction.updateFooterArea(event);
    final Renderer renderer = outputFunction.getRenderer();
    renderer.startGroup(group, event.getState().getPredictedStateCount());
    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    outputFunction.print(outputFunction.getRuntime(), b);
    outputFunction.addSubReportMarkers(renderer.endSection());
    renderer.startGroupBody(groupBody, event.getState().getPredictedStateCount());
  }
View Full Code Here

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

    outputFunction.updateFooterArea(event);

    final DetailsHeader detailsHeader = event.getReport().getDetailsHeader();
    if (detailsHeader != null)
    {
      renderer.startSection(Renderer.SectionType.NORMALFLOW);
      outputFunction.print(outputFunction.getRuntime(), detailsHeader);
      outputFunction.addSubReportMarkers(renderer.endSection());
    }

    if (numberOfRows == 0 || outputFunction.getMetaData().isFeatureSupported(OutputProcessorFeature.DESIGNTIME))
View Full Code Here

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

    {
      // ups, we have no data. Lets signal that ...
      final NoDataBand noDataBand = event.getReport().getNoDataBand();
      if (noDataBand != null)
      {
        renderer.startSection(Renderer.SectionType.NORMALFLOW);
        outputFunction.print(outputFunction.getRuntime(), noDataBand);
        outputFunction.addSubReportMarkers(renderer.endSection());
        // there will be no item-band printed.
      }
    }
View Full Code Here

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


    final ItemBand itemBand = event.getReport().getItemBand();
    if (itemBand != null)
    {
      renderer.startSection(Renderer.SectionType.NORMALFLOW);
      outputFunction.print(outputFunction.getRuntime(), itemBand);
      outputFunction.addSubReportMarkers(renderer.endSection());
    }
  }
View Full Code Here

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

    outputFunction.updateFooterArea(event);

    final DetailsFooter detailsFooter = event.getReport().getDetailsFooter();
    if (detailsFooter != null)
    {
      renderer.startSection(Renderer.SectionType.NORMALFLOW);
      ExpressionRuntime runtime = outputFunction.getRuntime();
      outputFunction.print(runtime, detailsFooter);
      outputFunction.addSubReportMarkers(renderer.endSection());
    }
  }
View Full Code Here

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

    final Band b = g.getFooter();

    final Renderer renderer = outputFunction.getRenderer();
    outputFunction.updateFooterArea(event);

    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    outputFunction.print(outputFunction.getRuntime(), b);
    outputFunction.addSubReportMarkers(renderer.endSection());
    renderer.endGroup();
  }
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.