Examples of KpiLineVisibilityOptions


Examples of it.eng.spagobi.engines.kpi.bo.KpiLineVisibilityOptions

    if (this.resources == null || this.resources.isEmpty()) {
      this.resources = mI.getResources();
    }
    logger.debug("Setted the List of Resources related to the specified Model Instance");

    KpiLineVisibilityOptions options = setVisibilityOptions();

    if (cascade!=null && cascade.equals("true")){//in case all the kpi children have to be calculated too

      try {
        if (this.resources == null || this.resources.isEmpty()) {
View Full Code Here

Examples of it.eng.spagobi.engines.kpi.bo.KpiLineVisibilityOptions

      if (this.resources == null || this.resources.isEmpty()) {
        this.resources = mI.getResources();
      }
      logger.debug("Setted the List of Resources related to the specified Model Instance");

      KpiLineVisibilityOptions options = setVisibilityOptions();

      //sets up register values
      ModelInstanceNode modI = DAOFactory.getModelInstanceDAO().loadModelInstanceById(mI.getModelInstanceNodeId(), dateOfKPI);

      logger.debug("Setted the List of Kpis that does not need to be persisted in db");
View Full Code Here

Examples of it.eng.spagobi.engines.kpi.bo.KpiLineVisibilityOptions

  }


  private KpiLineVisibilityOptions setVisibilityOptions(){
    logger.debug("IN");
    KpiLineVisibilityOptions options = new KpiLineVisibilityOptions();
    options.setClosed_tree(closed_tree);
    options.setDisplay_alarm(display_alarm);
    options.setDisplay_bullet_chart(display_bullet_chart);
    options.setDisplay_semaphore(display_semaphore);
    options.setDisplay_threshold_image(display_threshold_image);
    options.setDisplay_weight(display_weight);
    options.setShow_axis(show_axis);
    options.setWeighted_values(weighted_values);

    options.setBullet_chart_title(bullet_chart_title);
    options.setKpi_title(kpi_title);
    options.setModel_title(model_title);
    options.setThreshold_image_title(threshold_image_title);
    options.setWeight_title(weight_title);
    options.setValue_title(value_title);
    logger.debug("OUT");
    return options;
  }
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.