-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathProductDetails.java
More file actions
42 lines (34 loc) · 839 Bytes
/
ProductDetails.java
File metadata and controls
42 lines (34 loc) · 839 Bytes
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
public class ProductDetails {
private String m_orderID;
private String m_product;
private String m_unitPrice;
private String m_quantity;
public String getOrderID() throws Exception {
return m_orderID;
}
public String setOrderID(String value) throws Exception {
m_orderID = value;
return value;
}
public String getProduct() throws Exception {
return m_product;
}
public String setProduct(String value) throws Exception {
m_product = value;
return value;
}
public String getUnitPrice() throws Exception {
return m_unitPrice;
}
public String setUnitPrice(String value) throws Exception {
m_unitPrice = value;
return value;
}
public String getQuantity() throws Exception {
return m_quantity;
}
public String setQuantity(String value) throws Exception {
m_quantity = value;
return value;
}
}