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

Examples of org.pentaho.reporting.engine.classic.core.Group.derive()


    {
      predefinedGroups.remove(column, tuple);

      logger.debug(String.format("Preserving existing other group " + column));
      // 1:1 mapping, this should be ok as it is ..
      final CrosstabOtherGroup g = (CrosstabOtherGroup) other.derive(true);
      g.setBody(body);
      return g;
    }
    else
    {
View Full Code Here


      if (other instanceof CrosstabRowGroup)
      {
        predefinedGroups.remove(column, tuple);
        logger.debug(String.format("Preserving existing row group " + column));

        final CrosstabRowGroup og = (CrosstabRowGroup) other.derive(true);
        og.setBody(innerBody);
        createSummaryCells(cellBody, rowDimension);
        return og;
      }
      else if (other instanceof CrosstabColumnGroup)
View Full Code Here

      if (other instanceof CrosstabColumnGroup)
      {
        predefinedGroups.remove(column, tuple);
        logger.debug(String.format("Preserving existing column group " + column));

        final CrosstabColumnGroup og = (CrosstabColumnGroup) other.derive(true);
        og.setBody(innerBody);
        createSummaryCells(cellBody, colDimension);
        return og;
      }
      else if (other instanceof CrosstabRowGroup)
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.