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

Examples of org.pentaho.reporting.engine.classic.core.util.ReportParameterValues


      //Fix up data sources specified by parameters passed in
      fixConfiguration(report, openerp_settings, postgres_settings, parameters);

      //Pass through other parameters
      ReportParameterValues values = report.getParameterValues();
      for(String parameter_name : parameters.keySet()) {
        Object parameter_value = parameters.get(parameter_name);

        if(parameters_types.get(parameter_name) != null)
          typeCastAndStore(values, ((Class<?>) parameters_types.get(parameter_name)).getName(), parameter_name, parameter_value);
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.util.ReportParameterValues

Copyright © 2018 www.massapicom. 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.