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

Examples of org.pentaho.reporting.engine.classic.core.MasterReport.clone()


      if ( report == null ) {
        report = getReportFromJar();
      }
    }
    if ( ( report != null ) && jFreeReportAction.getCreatePrivateCopy().getBooleanValue( false ) ) {
      report = (MasterReport) report.clone();
    }
    return report;
  }

  private MasterReport getReportFromResource() throws ResourceException, IOException {
View Full Code Here


    applyThreadPriority();

    final boolean privateCopy =
        getInputBooleanValue( AbstractJFreeReportComponent.REPORTPARAMCOMPONENT_PRIVATEREPORT_OUTPUT, false );
    if ( privateCopy && isDefinedOutput( AbstractJFreeReportComponent.DATACOMPONENT_REPORTTEMP_OBJINPUT ) ) {
      report = (MasterReport) report.clone();
    }

    // this might be invalid in case the action is contained in a sub-directory.
    final String baseName = IOUtils.getInstance().stripFileExtension( getActionName() );
    final String path = getSolutionName() + File.separator + getSolutionPath();
View Full Code Here

    }

    final boolean privateCopy =
        getInputBooleanValue( AbstractJFreeReportComponent.REPORTPARAMCOMPONENT_PRIVATEREPORT_OUTPUT, false );
    if ( privateCopy && isDefinedOutput( AbstractJFreeReportComponent.DATACOMPONENT_REPORTTEMP_OBJINPUT ) ) {
      report = (MasterReport) report.clone();
    }

    // Get input parameters, and set them as properties in the report
    // object.
    final Set paramNames = getInputNames();
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.