Subversion Repositories SmartDukaan

Rev

Rev 26055 | 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
 
3
public class LegendModel {
4
 
27705 amit.gupta 5
	private String position;
26055 tejbeer 6
 
27705 amit.gupta 7
	@Override
8
	public String toString() {
9
		return "LegendModel [position=" + position + "]";
26055 tejbeer 10
	}
11
 
27705 amit.gupta 12
	public String getPosition() {
13
		return position;
26055 tejbeer 14
	}
15
 
27705 amit.gupta 16
	public void setPosition(String position) {
17
		this.position = position;
18
	}
19
 
20
 
26055 tejbeer 21
}