Subversion Repositories SmartDukaan

Rev

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

Rev 21543 Rev 21600
Line 41... Line 41...
41
		return unitPrice;
41
		return unitPrice;
42
	}
42
	}
43
	public void setUnitPrice(float unitPrice) {
43
	public void setUnitPrice(float unitPrice) {
44
		this.unitPrice = unitPrice;
44
		this.unitPrice = unitPrice;
45
	}
45
	}
-
 
46
	@Override
-
 
47
	public String toString() {
-
 
48
		return "CustomLineItem [brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
-
 
49
				+ ", color=" + color + ", quantity=" + quantity + ", unitPrice=" + unitPrice + "]";
-
 
50
	}
-
 
51
	
-
 
52
	
46
}
53
}