Package it.eng.spagobi.engines.documentcomposition.exporterUtils

Examples of it.eng.spagobi.engines.documentcomposition.exporterUtils.CurrentConfigurationDocComp


      // get its parameters configuration
      logger.debug("Get parametrs configuration for document "+label);     
      Object urlO=sb.getAttribute("TRACE_PAR_"+label);
      if(urlO!=null){
        String url=urlO.toString();
        CurrentConfigurationDocComp ccdc=new CurrentConfigurationDocComp(label);
        ccdc.fillParsFromUrl(url);
        currentConfigurationsMap.put(label, ccdc);

      }
     
      // get its svg (for highcharts document because they're created only by the client-side)
      logger.debug("Get svg content for the highchart "+label);     
      String svg =  (sb.getAttribute("SVG_"+label) != null)?sb.getAttribute("SVG_"+label).toString():null;
      if(svg != null){
        CurrentConfigurationDocComp ccdc = new CurrentConfigurationDocComp(label);
        Map<String,Object> svgChartPar = new HashMap<String,Object>();
        svgChartPar.put("SVG_"+label, svg);
        ccdc.setParameters(svgChartPar);
        currentConfigurationsMap.put("SVG_"+label, ccdc);
      }
    }

View Full Code Here

TOP

Related Classes of it.eng.spagobi.engines.documentcomposition.exporterUtils.CurrentConfigurationDocComp

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.