}
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;
}