Subversion Repositories SmartDukaan

Rev

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

Rev 21426 Rev 21431
Line 2... Line 2...
2
 
2
 
3
public class LineOfBusiness {
3
public class LineOfBusiness {
4
	private boolean recharge;
4
	private boolean recharge;
5
    private boolean mobile;
5
    private boolean mobile;
6
    private boolean accessories;
6
    private boolean accessories;
7
    private boolean other1;
7
    private String other1;
8
    private boolean other2;
8
    private String other2;
9
	public boolean isRecharge() {
9
	public boolean isRecharge() {
10
		return recharge;
10
		return recharge;
11
	}
11
	}
12
	public void setRecharge(boolean recharge) {
12
	public void setRecharge(boolean recharge) {
13
		this.recharge = recharge;
13
		this.recharge = recharge;
Line 22... Line 22...
22
		return accessories;
22
		return accessories;
23
	}
23
	}
24
	public void setAccessories(boolean accessories) {
24
	public void setAccessories(boolean accessories) {
25
		this.accessories = accessories;
25
		this.accessories = accessories;
26
	}
26
	}
27
	public boolean isOther1() {
27
	public String getOther1() {
28
		return other1;
28
		return other1;
29
	}
29
	}
30
	public void setOther1(boolean other1) {
30
	public void setOther1(String other1) {
31
		this.other1 = other1;
31
		this.other1 = other1;
32
	}
32
	}
33
	public boolean isOther2() {
33
	public String getOther2() {
34
		return other2;
34
		return other2;
35
	}
35
	}
36
	public void setOther2(boolean other2) {
36
	public void setOther2(String other2) {
37
		this.other2 = other2;
37
		this.other2 = other2;
38
	}
38
	}
39
}
39
}