Subversion Repositories SmartDukaan

Rev

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

Rev 26055 Rev 27706
Line 3... Line 3...
3
import java.util.List;
3
import java.util.List;
4
 
4
 
5
public class DatasetModel {
5
public class DatasetModel {
6
 
6
 
7
	public String label;
7
	public String label;
8
	public List<String> backgroundColor;
8
	public String backgroundColor;
9
	public List<Double> data;
9
	public List<Double> data;
10
 
10
	
11
	public List<String> getBackgroundColor() {
-
 
12
		return backgroundColor;
11
	@Override
13
	}
-
 
14
 
-
 
15
	public void setBackgroundColor(List<String> backgroundColor) {
12
	public String toString() {
16
		this.backgroundColor = backgroundColor;
13
		return "DatasetModel [label=" + label + ", backgroundColor=" + backgroundColor + ", data=" + data + "]";
17
	}
14
	}
18
 
15
 
19
	public String getLabel() {
16
	public String getLabel() {
20
		return label;
17
		return label;
21
	}
18
	}
Line 30... Line 27...
30
 
27
 
31
	public void setData(List<Double> data) {
28
	public void setData(List<Double> data) {
32
		this.data = data;
29
		this.data = data;
33
	}
30
	}
34
 
31
 
-
 
32
	public String getBackgroundColor() {
-
 
33
		return backgroundColor;
-
 
34
	}
-
 
35
 
-
 
36
	public void setBackgroundColor(String backgroundColor) {
-
 
37
		this.backgroundColor = backgroundColor;
-
 
38
	}
-
 
39
	
-
 
40
	
-
 
41
 
35
}
42
}