Subversion Repositories SmartDukaan

Rev

Rev 27884 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26055 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
public class OptionsModel {
4
 
5
	public LegendModel legend;
6
	public TitleModel title;
27706 amit.gupta 7
	private boolean responsive=true;
27884 tejbeer 8
	public ScalesModel scales;
28430 tejbeer 9
	public PluginsModel plugins;
27706 amit.gupta 10
 
11
 
28430 tejbeer 12
	public PluginsModel getPlugins() {
13
		return plugins;
14
	}
15
 
16
	public void setPlugins(PluginsModel plugins) {
17
		this.plugins = plugins;
18
	}
19
 
27706 amit.gupta 20
	public boolean isResponsive() {
21
		return responsive;
22
	}
23
 
24
	public void setResponsive(boolean responsive) {
25
		this.responsive = responsive;
26
	}
27
 
27884 tejbeer 28
 
27706 amit.gupta 29
	@Override
30
	public String toString() {
27884 tejbeer 31
		return "OptionsModel [legend=" + legend + ", title=" + title + ", responsive=" + responsive + ", scalesModel="
32
				+ scales + "]";
27706 amit.gupta 33
	}
34
 
26055 tejbeer 35
	public LegendModel getLegend() {
36
		return legend;
37
	}
38
 
39
	public void setLegend(LegendModel legend) {
40
		this.legend = legend;
41
	}
42
 
43
	public TitleModel getTitle() {
44
		return title;
45
	}
46
 
47
	public void setTitle(TitleModel title) {
48
		this.title = title;
49
	}
50
 
27884 tejbeer 51
	public ScalesModel getScales() {
52
		return scales;
53
	}
54
 
55
	public void setScales(ScalesModel scales) {
56
		this.scales = scales;
57
	}
58
 
26055 tejbeer 59
}