1 | public class OtherAssigned {
↵ | | 1 | public class Part implements Serializable {↵
|
2 | private Long id;↵ | | 2 | private ↵
|
3 | private ParentAssigned owner;↵ | | |
|
|
4 | public OtherAssigned() {↵ | | |
|
5 | }↵ | | |
|
|
6 | public OtherAssigned(Long id↵ | | 3 | String name;↵
|
| | | 4 | private String description;↵
|
| | | 5 | public String getDescription() {↵
|
| | | 6 | return description;↵
|
| | | 7 | }↵
|
7 | ) {
↵ | | 8 | public void setDescription(String description) {↵
|
8 | this.id = id;↵ | | 9 | this.↵
|
9 | }↵ | | |
|
|
10 | public Long getId() {↵ | | |
|
11 | return id;↵ | | |
|
12 | }↵ | | |
|
|
13 | public ParentAssigned getOwner↵ | | 10 | description = description;↵
|
| | | 11 | }↵
|
14 | () {
↵ | | 12 | public String getName() {↵
|
15 | return owner;↵ | | 13 | return ↵
|
16 | }↵ | | |
|
17 |
↵ | | 14 | name;↵
|
| | | 15 | }↵
|
18 | public void setOwner(ParentAssigned owner) {
↵ | | 16 | public void setName(String name) {↵
|
19 | this.owner = owner;
↵ | | 17 | this.name = name;↵
|
20 | | | 18 |
|