Subversion Repositories SmartDukaan

Rev

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

Rev 22389 Rev 23465
Line 5... Line 5...
5
	private String brand;
5
	private String brand;
6
	private String modelName;
6
	private String modelName;
7
	private String modelNumber;
7
	private String modelNumber;
8
	private String color;
8
	private String color;
9
	private String displayName;
9
	private String displayName;
10
	private float quantity;
10
	private int quantity;
11
	private float unitPrice;
11
	private float unitPrice;
12
	private String imageUrl;
12
	private String imageUrl;
13
	private String title;
13
	private String title;
14
	
14
	
15
	public String getTitle() {
15
	public String getTitle() {
Line 40... Line 40...
40
		return color;
40
		return color;
41
	}
41
	}
42
	public void setColor(String color) {
42
	public void setColor(String color) {
43
		this.color = color;
43
		this.color = color;
44
	}
44
	}
45
	public float getQuantity() {
45
	public int getQuantity() {
46
		return quantity;
46
		return quantity;
47
	}
47
	}
48
	public void setQuantity(float quantity) {
48
	public void setQuantity(int quantity) {
49
		this.quantity = quantity;
49
		this.quantity = quantity;
50
	}
50
	}
51
	public float getUnitPrice() {
51
	public float getUnitPrice() {
52
		return unitPrice;
52
		return unitPrice;
53
	}
53
	}