Subversion Repositories SmartDukaan

Rev

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

Rev 26055 Rev 27884
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
-
 
3
import java.util.HashSet;
3
import java.util.List;
4
import java.util.List;
4
 
5
 
5
public class DataModel {
6
public class DataModel {
6
 
7
 
7
	public List<String> labels;
8
	public HashSet<String> labels;
8
	public List<DatasetModel> datasets;
9
	public List<DatasetModel> datasets;
9
 
10
 
10
	public List<String> getLabels() {
11
	public HashSet<String> getLabels() {
11
		return labels;
12
		return labels;
12
	}
13
	}
13
 
14
 
14
	public void setLabels(List<String> labels) {
15
	public void setLabels(HashSet<String> labels) {
15
		this.labels = labels;
16
		this.labels = labels;
16
	}
17
	}
17
 
18
 
18
	public List<DatasetModel> getDatasets() {
19
	public List<DatasetModel> getDatasets() {
19
		return datasets;
20
		return datasets;