1 | public class Item {↵ | | 1 | public class Being {↵
|
2 | private Long id;↵ | | 2 | private long id;↵
|
3 | private String name;↵ | | 3 | private String identity;↵
|
4 | private String description;↵ | | 4 | private String ↵
|
5 | ↵ | | |
|
6 | public String getDescription() {↵ | | |
|
7 | return description↵ | | 5 | location;↵
|
8 | ;↵ | | 6 | private String species;↵
|
9 | }↵ | | 7 | ↵
|
10 | public void setDescription(String description) {↵ | | 8 | public void setLocation(String location) {↵
|
11 | this.description = description;↵ | | 9 | this.location = location;↵
|
12 | }↵ | | 10 | }↵
|
13 | public Long getId() {↵ | | 11 | public String getLocation() {↵
|
14 | return id;↵ | | 12 | return location;↵
|
15 | }↵ | | 13 | }↵
|
16 | public void setId(Long id) {↵ | | 14 | public void set↵
|
17 | this.id = id↵ | | 15 | Species(String species) {↵
|
18 | ;↵ | | 16 | this.species = species;↵
|
19 | }↵ | | 17 | }↵
|
20 | public String getName() {↵ | | 18 | public String getSpecies() {↵
|
21 | return name;↵ | | 19 | return species;↵
|
22 | }↵ | | 20 | }↵
|
23 | public void setName(String name) {↵ | | 21 | public void set↵
|
24 | this.name = name↵ | | 22 | Identity(String identity) {↵
|
| | | 23 | this.identity = identity;↵
|
| | | 24 | }↵
|
| | | 25 | public String getIdentity() {↵
|
25 | ;↵ | | 26 | return identity;↵
|
26 | | | 27 |
|