-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrder.java
More file actions
83 lines (69 loc) · 1.55 KB
/
Order.java
File metadata and controls
83 lines (69 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package org.javaee7.beans;
import java.math.BigDecimal;
import org.javaee7.interfaces.Widget;
/**
*
* @author Juneau
*/
public class Order {
private Widget product;
private String customerNumber;
private int quantity;
private BigDecimal total;
/**
* @return the product
*/
public Widget getProduct() {
return product;
}
/**
* @param product the product to set
*/
public void setProduct(Widget product) {
this.product = product;
}
/**
* @return the quantity
*/
public int getQuantity() {
return quantity;
}
/**
* @param quantity the quantity to set
*/
public void setQuantity(int quantity) {
this.quantity = quantity;
}
/**
* @return the total
*/
//@ValidateExecutable(type=GETTER_METHODS)
public BigDecimal getTotal() {
return total;
}
/**
* @param total the total to set
*/
public void setTotal(BigDecimal total) {
this.total = total;
}
/**
* @return the customerNumber
*/
public String getCustomerNumber() {
return customerNumber;
}
/**
* @param customerNumber the customerNumber to set
*/
public void setCustomerNumber(String customerNumber) {
this.customerNumber = customerNumber;
}
public void calculateTotal(){
if (product != null){
total = product.getCost().multiply(new BigDecimal(quantity));
} else {
total = new BigDecimal(0.00);
}
}
}