Subversion Repositories SmartDukaan

Rev

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

Rev 22521 Rev 22924
Line 6... Line 6...
6
	private int itemId;
6
	private int itemId;
7
	private String brand;
7
	private String brand;
8
	private String modelName;
8
	private String modelName;
9
	private String modelNumber;
9
	private String modelNumber;
10
	private String color;
10
	private String color;
11
	private ItemType itemType;
11
	private String itemType;
12
	public int getItemId() {
12
	public int getItemId() {
13
		return itemId;
13
		return itemId;
14
	}
14
	}
15
	public void setItemId(int itemId) {
15
	public void setItemId(int itemId) {
16
		this.itemId = itemId;
16
		this.itemId = itemId;
Line 37... Line 37...
37
		return color;
37
		return color;
38
	}
38
	}
39
	public void setColor(String color) {
39
	public void setColor(String color) {
40
		this.color = color;
40
		this.color = color;
41
	}
41
	}
42
	public ItemType getItemType() {
42
	public String getItemType() {
43
		return itemType;
43
		return itemType;
44
	}
44
	}
45
	public void setItemType(ItemType itemType) {
45
	public void setItemType(String itemType) {
46
		this.itemType = itemType;
46
		this.itemType = itemType;
47
	}
47
	}
48
	@Override
48
	@Override
49
	public int hashCode() {
49
	public int hashCode() {
50
		final int prime = 31;
50
		final int prime = 31;