1 | public class Part implements Serializable {↵ | | 1 | public class Customer extends Per↵
|
2 | private String name;↵ | | |
|
3 | private String description;↵ | | 2 | son {↵
|
| | | 3 | private Employee salesperson;↵
|
| | | 4 | private String comments;↵
|
|
| | | 5 | /**↵
|
| | | 6 | * @return Returns the salesperson.↵
|
| | | 7 | */↵
|
4 | public String getDescription() {↵ | | 8 | public ↵
|
5 | return description;↵ | | |
|
6 | }↵ | | |
|
7 | public void setDescription(String descripti↵ | | 9 | Employee getSalesperson() {↵
|
| | | 10 | return salesperson;↵
|
| | | 11 | }↵
|
| | | 12 | /**↵
|
| | | 13 | * @param salesperson The salesperson to set.↵
|
| | | 14 | */↵
|
8 | on) {↵ | | 15 | public void setSalesperson(Employee salesperson) {↵
|
9 | this.description = description;↵ | | 16 | this.↵
|
10 | }↵ | | 17 | salesperson = salesperson;↵
|
| | | 18 | }↵
|
| | | 19 | /**↵
|
| | | 20 | * @return Returns the comments.↵
|
| | | 21 | */↵
|
11 | public String getName() {↵ | | 22 | public String getComments() {↵
|
12 | return name;↵ | | 23 | return ↵
|
13 | }↵ | | 24 | comments;↵
|
| | | 25 | }↵
|
| | | 26 | /**↵
|
| | | 27 | * @param comments The comments to set.↵
|
| | | 28 | */↵
|
14 | public void setName(String name) {↵ | | 29 | public void set↵
|
15 | this.name = name | | 30 | Comments(String comments) {↵
|
| | | 31 | this.comments = comments
|