-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathOrderDetails.java
70 lines (56 loc) · 1.67 KB
/
OrderDetails.java
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
import com.syncfusion.javahelper.system.collections.generic.ListSupport;
public class OrderDetails {
private String m_customerName;
private String m_orderID;
private String m_orderDate;
private String m_expectedDeliveryDate;
private String m_shippedDate;
private ListSupport<ProductDetails> m_products;
public String getCustomerName() throws Exception {
return m_customerName;
}
public String setCustomerName(String value) throws Exception {
m_customerName = value;
return value;
}
public String getOrderID() throws Exception {
return m_orderID;
}
public String setOrderID(String value) throws Exception {
m_orderID = value;
return value;
}
public String getOrderDate() throws Exception {
return m_orderDate;
}
public String setOrderDate(String value) throws Exception {
m_orderDate = value;
return value;
}
public String getExpectedDeliveryDate() throws Exception {
return m_expectedDeliveryDate;
}
public String setExpectedDeliveryDate(String value) throws Exception {
m_expectedDeliveryDate = value;
return value;
}
public String getShippedDate() throws Exception {
return m_shippedDate;
}
public String setShippedDate(String value) throws Exception {
m_shippedDate = value;
return value;
}
public ListSupport<ProductDetails> getProducts() throws Exception {
if (m_products == null)
m_products = new ListSupport<ProductDetails>(ProductDetails.class);
return m_products;
}
public ListSupport<ProductDetails> setProducts(ListSupport<ProductDetails> value) throws Exception {
m_products = value;
return value;
}
public OrderDetails() throws Exception {
m_products = new ListSupport<ProductDetails>(ProductDetails.class);
}
}