Subversion Repositories SmartDukaan

Rev

Rev 26055 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26055 Rev 28434
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
public class TitleModel {
3
public class TitleModel {
4
	public Boolean display;
4
	public Boolean display;
5
	public String text;
5
	public String text;
-
 
6
	public int fontSize;
-
 
7
	public String fontColor;
6
 
8
 
7
	public Boolean getDisplay() {
9
	public Boolean getDisplay() {
8
		return display;
10
		return display;
9
	}
11
	}
10
 
12
 
Line 18... Line 20...
18
 
20
 
19
	public void setText(String text) {
21
	public void setText(String text) {
20
		this.text = text;
22
		this.text = text;
21
	}
23
	}
22
 
24
 
-
 
25
	public int getFontSize() {
-
 
26
		return fontSize;
-
 
27
	}
-
 
28
 
-
 
29
	public void setFontSize(int fontSize) {
-
 
30
		this.fontSize = fontSize;
-
 
31
	}
-
 
32
 
-
 
33
	public String getFontColor() {
-
 
34
		return fontColor;
-
 
35
	}
-
 
36
 
-
 
37
	public void setFontColor(String fontColor) {
-
 
38
		this.fontColor = fontColor;
-
 
39
	}
-
 
40
	
-
 
41
	
-
 
42
 
23
}
43
}