1 | public class ComponentCollection implements Serializable {↵ | | 1 | public class Employer implements Serializable {↵
|
2 | private String str;↵ | | 2 | private Integer id;↵
|
3 | private List foos;↵ | | 3 | private Collection employees;↵
|
4 | private List floats;↵ | | 4 | private Integer vers;↵
|
|
5 | public List getFoos() {↵ | | 5 | public Integer getVers() {↵
|
6 | return foos;↵ | | 6 | return vers;↵
|
7 | }↵ | | 7 | }↵
|
|
8 | public String getStr() {↵ | | 8 | public ↵
|
9 | return str↵ | | 9 | void setVers(Integer vers) {↵
|
10 | ;↵ | | 10 | this.vers = vers;↵
|
11 | }↵ | | 11 | }↵
|
|
|
12 | public void setFoos(List list) {↵ | | 12 | public ↵
|
13 | foos = list↵ | | 13 | Collection getEmployees() {↵
|
14 | ;↵ | | 14 | return employees;↵
|
15 | }↵ | | 15 | }↵
|
| | | 16 | ↵
|
| | | 17 | ↵
|
16 | public void setStr(String string) {↵ | | 18 | public ↵
|
17 | str = string↵ | | 19 | Integer getId() {↵
|
18 | ;↵ | | 20 | return id;↵
|
19 | }↵ | | 21 | }↵
|
| | | 22 | ↵
|
20 | public List getFloats() {↵ | | 23 | public ↵
|
21 | return floats;↵ | | |
|
22 | }↵ | | |
|
|
23 | public void setFloats(List list) {↵ | | |
|
24 | floats = list | | 24 | void setEmployees(Collection set) {↵
|
| | | 25 | employees = set;↵
|
| | | 26 | }↵
|
|
| | | 27 | public void setId(Integer integer) {↵
|
| | | 28 | id = integer
|