Rev 26055 | Rev 27884 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;public class OptionsModel {public LegendModel legend;public TitleModel title;private boolean responsive=true;public boolean isResponsive() {return responsive;}public void setResponsive(boolean responsive) {this.responsive = responsive;}@Overridepublic String toString() {return "OptionsModel [legend=" + legend + ", title=" + title + ", responsive=" + responsive + "]";}public LegendModel getLegend() {return legend;}public void setLegend(LegendModel legend) {this.legend = legend;}public TitleModel getTitle() {return title;}public void setTitle(TitleModel title) {this.title = title;}}