Subversion Repositories SmartDukaan

Rev

Rev 27884 | Rev 27901 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27884 Rev 27900
Line 5... Line 5...
5
 
5
 
6
public class DataModel {
6
public class DataModel {
7
 
7
 
8
	public HashSet<String> labels;
8
	public HashSet<String> labels;
9
	public List<DatasetModel> datasets;
9
	public List<DatasetModel> datasets;
-
 
10
	public List<LineChartModel> lineChartModel;
-
 
11
	
-
 
12
	
-
 
13
	
-
 
14
 
-
 
15
	public List<LineChartModel> getLineChartModel() {
-
 
16
		return lineChartModel;
-
 
17
	}
-
 
18
 
-
 
19
	public void setLineChartModel(List<LineChartModel> lineChartModel) {
-
 
20
		this.lineChartModel = lineChartModel;
-
 
21
	}
10
 
22
 
11
	public HashSet<String> getLabels() {
23
	public HashSet<String> getLabels() {
12
		return labels;
24
		return labels;
13
	}
25
	}
14
 
26