1 | public class ProductLine {↵ | | 1 | public class Speech {↵
|
| | | 2 |
↵
|
2 | private String id;↵ | | 3 | private Integer id;
↵
|
3 | private String description;↵ | | 4 | private String ↵
|
4 | private Set models = new HashSet();↵ | | |
|
5 | ↵ | | |
|
6 | public String getDescription↵ | | 5 | name;↵
|
| | | 6 | private Double length;↵
|
|
7 | () {↵ | | 7 | public Integer getId() {
↵
|
8 | return description;↵ | | 8 | return ↵
|
9 | }↵ | | 9 | id;↵
|
| | | 10 | }↵
|
| | | 11 |
↵
|
10 | public void setDescription(String description) {↵ | | 12 | public void setId(Integer id) {
↵
|
11 | this.description = description;↵ | | 13 | this.↵
|
12 | }↵ | | |
|
13 | public String getId↵ | | 14 | id = id;↵
|
| | | 15 | }↵
|
|
14 | () {↵ | | 16 | public Double getLength() {
↵
|
15 | return id;↵ | | 17 | return ↵
|
16 | }↵ | | 18 | length;↵
|
| | | 19 | }↵
|
| | | 20 |
↵
|
17 | public void setId(String id) {↵ | | 21 | public void setLength(Double length) {
↵
|
18 | this.id = id;↵ | | 22 | this.↵
|
19 | }↵ | | 23 | length = length;↵
|
| | | 24 | }↵
|
| | | 25 |
↵
|
20 | public Set getModels() {↵ | | 26 | public String getName() {
↵
|
21 | return models;↵ | | 27 | return ↵
|
22 | }↵ | | 28 | name;↵
|
| | | 29 | }↵
|
| | | 30 |
↵
|
23 | public void setModels(Set models) {↵ | | 31 | public void setName(String name) {
↵
|
24 | this.models = models | | 32 | this.name = name
|