View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.common.model;public class OptionModel {private boolean responsive=true;private Legend legend;public boolean isResponsive() {return responsive;}public void setResponsive(boolean responsive) {this.responsive = responsive;}public OptionModel() {super();// TODO Auto-generated constructor stub}public Legend getLegend() {return legend;}public void setLegend(Legend legend) {this.legend = legend;}@Overridepublic String toString() {return "OptionModel [responsive=" + responsive + "]";}}