Examples of endSection()


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

    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());
  }

  public void groupBodyFinished(final DefaultOutputFunction outputFunction,
View Full Code Here

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

    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.endSection()

    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());
  }

  public void groupBodyFinished(final DefaultOutputFunction outputFunction,
View Full Code Here

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

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

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

  public void itemsStarted(final DefaultOutputFunction outputFunction,
                           final ReportEvent event) throws ReportProcessingException
View Full Code Here

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

    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());
  }

  public void itemsStarted(final DefaultOutputFunction outputFunction,
                           final ReportEvent event) throws ReportProcessingException
View Full Code Here

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

    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))
    {
      // ups, we have no data. Lets signal that ...
View Full Code Here

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

      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.endSection()

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

  public void itemsFinished(final DefaultOutputFunction outputFunction,
                            final ReportEvent event) throws ReportProcessingException
View Full Code Here

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

    if (detailsFooter != null)
    {
      renderer.startSection(Renderer.SectionType.NORMALFLOW);
      ExpressionRuntime runtime = outputFunction.getRuntime();
      outputFunction.print(runtime, detailsFooter);
      outputFunction.addSubReportMarkers(renderer.endSection());
    }
  }

  public void groupBodyFinished(final DefaultOutputFunction outputFunction,
                                final ReportEvent event) throws ReportProcessingException
View Full Code Here

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

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

    renderer.startSection(Renderer.SectionType.NORMALFLOW);
    outputFunction.print(outputFunction.getRuntime(), b);
    outputFunction.addSubReportMarkers(renderer.endSection());
    renderer.endGroup();
  }

  public void summaryRowStart(final DefaultOutputFunction outputFunction, final ReportEvent event)
      throws ReportProcessingException
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.