Subversion Repositories SmartDukaan

Rev

Rev 28434 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28434 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
public class Tooltips {
4
 
5
	public int titleFontSize;
6
	public int  bodyFontSize;
7
	public String  mode;
8
	public boolean intersect;
28447 tejbeer 9
	public String backgroundColor;
28434 tejbeer 10
 
11
 
28447 tejbeer 12
 
13
 
14
 
15
	public String getBackgroundColor() {
16
		return backgroundColor;
17
	}
18
	public void setBackgroundColor(String backgroundColor) {
19
		this.backgroundColor = backgroundColor;
20
	}
28434 tejbeer 21
	public String getMode() {
22
		return mode;
23
	}
24
	public void setMode(String mode) {
25
		this.mode = mode;
26
	}
27
 
28
	public boolean isIntersect() {
29
		return intersect;
30
	}
31
	public void setIntersect(boolean intersect) {
32
		this.intersect = intersect;
33
	}
34
	@Override
35
	public String toString() {
36
		return "Tooltips [titleFontSize=" + titleFontSize + ", bodyFontSize=" + bodyFontSize + ", mode=" + mode
37
				+ ", intersect=" + intersect + "]";
38
	}
39
	public int getTitleFontSize() {
40
		return titleFontSize;
41
	}
42
	public void setTitleFontSize(int titleFontSize) {
43
		this.titleFontSize = titleFontSize;
44
	}
45
	public int getBodyFontSize() {
46
		return bodyFontSize;
47
	}
48
	public void setBodyFontSize(int bodyFontSize) {
49
		this.bodyFontSize = bodyFontSize;
50
	}
51
 
52
 
53
 
54
}