1 | public class Radio {↵ | | 1 | public class Employee implements Serializable {↵
|
2 | private Integer id;↵ | | 2 | private Integer id;↵
|
3 | private String frequency;↵ | | 3 | private Collection employers;↵
|
|
|
4 | public Integer getId() {↵ | | 4 | public Integer getId() {↵
|
5 | return id;↵ | | 5 | return id;↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void setId(Integer id) {↵ | | 7 | public void setId(Integer integer) {↵
|
8 | this.id = id;↵ | | 8 | id = integer;↵
|
9 | }↵ | | 9 | }↵
|
| | | 10 | ↵
|
| | | 11 | ↵
|
10 | public String getFrequency() {↵ | | 12 | public Collection getEmployers() {↵
|
11 | return frequency;↵ | | 13 | return employers;↵
|
12 | }↵ | | 14 | }↵
|
| | | 15 | ↵
|
13 | public void setFrequency(String frequency) {↵ | | 16 | public void setEmployers(Collection employers) {↵
|
14 | this.frequency = frequency;↵ | | 17 | this.employers = employers;↵
|
15 | | | 18 |
|