Examples of derive()


Examples of org.jfree.report.flow.ReportJob.derive()

      printReportProcessor.close();
      printReportProcessor = null;
    }

    final ReportJob reportJob = getReportJob();
    printReportProcessor = new PrintReportProcessor(reportJob.derive());

    paginationWorker = new Worker();
    paginationWorker.setWorkload
        (new RepaginationRunnable(printReportProcessor));
  }
View Full Code Here

Examples of org.jfree.report.flow.ReportJob.derive()

      printReportProcessor.close();
      printReportProcessor = null;
    }

    final ReportJob reportJob = getReportJob();
    printReportProcessor = new PrintReportProcessor(reportJob.derive());

    paginationWorker = new Worker();
    paginationWorker.setWorkload
        (new RepaginationRunnable(printReportProcessor));
  }
View Full Code Here

Examples of org.jfree.report.flow.ReportJob.derive()

      printReportProcessor.close();
      printReportProcessor = null;
    }

    final ReportJob reportJob = getReportJob();
    printReportProcessor = new PrintReportProcessor(reportJob.derive());

    paginationWorker = new Worker();
    paginationWorker.setWorkload
        (new RepaginationRunnable(printReportProcessor));
  }
View Full Code Here

Examples of org.openpnp.model.Location.derive()

        p = Utils2D.rotateTranslateScalePoint(p, boardLocation
                .getRotation(), boardLocation.getX(), boardLocation
                .getY(), 1.0, 1.0);

        // Update the placementLocation with the transformed point
        placementLocation = placementLocation.derive(p.getX(), p.getY(), null, null);

        // Update the placementLocation with the board's rotation and
        // the placement's rotation
        // This sets the rotation of the part itself when it will be
        // placed
View Full Code Here

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

    if (insert instanceof Band)
    {
      final Band band = (Band) insert;
      if (insert instanceof RootLevelBand == false)
      {
        return band.derive();
      }
      final Band newBand = new Band();
      band.copyInto(newBand);
      band.setElementType(BandType.INSTANCE);
      return newBand;
View Full Code Here

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

    if (insert instanceof Band)
    {
      final Band band = (Band) insert;
      if (insert instanceof RootLevelBand == false)
      {
        return band.derive();
      }
      final Band newBand = new Band();

      // copy styles
      final ElementStyleSheet elementStyleSheet = band.getStyle();
View Full Code Here

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

      for (int i = 0; i < count; i++)
      {
        final DataFactory df = dataFactory.getReference(i);
        if (df == data)
        {
          return df.derive();
        }
      }
      return null;
    }
View Full Code Here

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

      for (int i = 0; i < count; i++)
      {
        final DataFactory df = dataFactory.getReference(i);
        if (df == data)
        {
          return df.derive();
        }
      }
      return null;
    }
View Full Code Here

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

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

      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
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.