Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27884 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
import java.util.List;
4
 
5
public class Legend {
6
 
7
	private PieLables  labels;
8
	private String position;
9
 
10
 
11
	public Legend() {
12
		super();
13
		// TODO Auto-generated constructor stub
14
	}
15
	public PieLables getLabels() {
16
		return labels;
17
	}
18
	public void setLabels(PieLables labels) {
19
		this.labels = labels;
20
	}
21
	public String getPosition() {
22
		return position;
23
	}
24
	public void setPosition(String position) {
25
		this.position = position;
26
	}
27
 
28
 
29
 
30
 
31
}