Subversion Repositories SmartDukaan

Rev

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

Rev 26055 Rev 27705
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
public class LegendModel {
3
public class LegendModel {
4
 
4
 
5
	public Boolean display;
5
	private String position;
6
 
6
 
-
 
7
	@Override
7
	public Boolean getDisplay() {
8
	public String toString() {
8
		return display;
9
		return "LegendModel [position=" + position + "]";
9
	}
10
	}
10
 
11
 
11
	public void setDisplay(Boolean display) {
12
	public String getPosition() {
12
		this.display = display;
13
		return position;
13
	}
14
	}
14
 
15
 
-
 
16
	public void setPosition(String position) {
-
 
17
		this.position = position;
-
 
18
	}
-
 
19
	
-
 
20
	
15
}
21
}