-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCustomerDetails.java
More file actions
80 lines (64 loc) · 1.74 KB
/
CustomerDetails.java
File metadata and controls
80 lines (64 loc) · 1.74 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
import com.syncfusion.javahelper.system.collections.generic.ListSupport;
public class CustomerDetails {
private String m_customerName;
private String m_address;
private String m_city;
private String m_postalCode;
private String m_country;
private String m_phone;
private ListSupport<OrderDetails> m_orders;
public String getCustomerName() throws Exception {
return m_customerName;
}
public String setCustomerName(String value) throws Exception {
m_customerName = value;
return value;
}
public String getAddress() throws Exception {
return m_address;
}
public String setAddress(String value) throws Exception {
m_address = value;
return value;
}
public String getCity() throws Exception {
return m_city;
}
public String setCity(String value) throws Exception {
m_city = value;
return value;
}
public String getPostalCode() throws Exception {
return m_postalCode;
}
public String setPostalCode(String value) throws Exception {
m_postalCode = value;
return value;
}
public String getCountry() throws Exception {
return m_country;
}
public String setCountry(String value) throws Exception {
m_country = value;
return value;
}
public String getPhone() throws Exception {
return m_phone;
}
public String setPhone(String value) throws Exception {
m_phone = value;
return value;
}
public ListSupport<OrderDetails> getOrders() throws Exception {
if (m_orders == null)
m_orders = new ListSupport<OrderDetails>(OrderDetails.class);
return m_orders;
}
public ListSupport<OrderDetails> setOrders(ListSupport<OrderDetails> value) throws Exception {
m_orders = value;
return value;
}
public CustomerDetails() throws Exception {
m_orders = new ListSupport<OrderDetails>(OrderDetails.class);
}
}