Subversion Repositories SmartDukaan

Rev

Rev 27884 | Rev 27901 | 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
 
27884 tejbeer 3
import java.util.HashSet;
26055 tejbeer 4
import java.util.List;
5
 
6
public class DataModel {
7
 
27884 tejbeer 8
	public HashSet<String> labels;
26055 tejbeer 9
	public List<DatasetModel> datasets;
27900 tejbeer 10
	public List<LineChartModel> lineChartModel;
11
 
12
 
13
 
26055 tejbeer 14
 
27900 tejbeer 15
	public List<LineChartModel> getLineChartModel() {
16
		return lineChartModel;
17
	}
18
 
19
	public void setLineChartModel(List<LineChartModel> lineChartModel) {
20
		this.lineChartModel = lineChartModel;
21
	}
22
 
27884 tejbeer 23
	public HashSet<String> getLabels() {
26055 tejbeer 24
		return labels;
25
	}
26
 
27884 tejbeer 27
	public void setLabels(HashSet<String> labels) {
26055 tejbeer 28
		this.labels = labels;
29
	}
30
 
31
	public List<DatasetModel> getDatasets() {
32
		return datasets;
33
	}
34
 
35
	public void setDatasets(List<DatasetModel> datasets) {
36
		this.datasets = datasets;
37
	}
38
 
39
}