1 | public class DataPoint {↵ | | 1 | public class Eye {↵
|
2 | private long id;↵ | | 2 | private long id;↵
|
3 | private BigDecimal x;↵ | | 3 | private ↵
|
4 | private BigDecimal y;↵ | | |
|
5 | private String description;↵ | | 4 | String name;↵
|
| | | 5 | private Jay jay;↵
|
| | | 6 | private Set jays = new HashSet();↵
|
|
6 | /**↵ | | 7 | /**↵
|
7 | * @return Returns the description.↵ | | 8 | * @return Returns the id.↵
|
8 | */↵ | | 9 | */↵
|
9 | public String getDescription() {↵ | | 10 | public long getId() {↵
|
10 | return description;↵ | | 11 | return id;↵
|
11 | }↵ | | 12 | }↵
|
|
12 | /**↵ | | 13 | /**↵
|
13 | * @param description The description to set.↵ | | 14 | * @param id The id to set.↵
|
14 | */↵ | | 15 | */↵
|
15 | public void setDescription(String description) {↵ | | 16 | public void set↵
|
16 | this.description = description↵ | | 17 | Id(long id) {↵
|
17 | ;↵ | | 18 | this.id = id;↵
|
18 | }↵ | | 19 | }↵
|
|
19 | /**↵ | | 20 | /**↵
|
20 | * @return Returns the id.↵ | | 21 | * @return Returns the jay.↵
|
21 | */↵ | | 22 | */↵
|
22 | public long getId() {↵ | | 23 | public Jay getJay() {↵
|
23 | return id;↵ | | 24 | return jay;↵
|
24 | }↵ | | 25 | }↵
|
|
25 | /**↵ | | 26 | /**↵
|
26 | * @param id The id to set.↵ | | 27 | * @param jay The jay to set.↵
|
27 | */↵ | | 28 | */↵
|
28 | public void setId(long id) {↵ | | 29 | public void setJay(Jay jay) {↵
|
29 | this.id = id;↵ | | 30 | this.jay = jay;↵
|
30 | }↵ | | 31 | }↵
|
|
31 | /**↵ | | 32 | /**↵
|
32 | * @return Returns the x.↵ | | 33 | * @return Returns the jays.↵
|
33 | */↵ | | 34 | */↵
|
34 | public BigDecimal getX() {↵ | | 35 | public Set getJays() {↵
|
35 | return x;↵ | | 36 | return jays;↵
|
36 | }↵ | | 37 | }↵
|
|
37 | /**↵ | | 38 | /**↵
|
38 | * @param x The x to set.↵ | | 39 | * @param jays The jays to set.↵
|
39 | */↵ | | 40 | */↵
|
40 | public void setX(BigDecimal x) {↵ | | 41 | public void set↵
|
41 | this.x = x↵ | | 42 | Jays(Set jays) {↵
|
42 | ;↵ | | 43 | this.jays = jays;↵
|
43 | }↵ | | 44 | }↵
|
|
44 | /**↵ | | 45 | /**↵
|
45 | * @return Returns the y.↵ | | 46 | * @return Returns the name.↵
|
46 | */↵ | | 47 | */↵
|
47 | public BigDecimal getY() {↵ | | 48 | public String getName() {↵
|
48 | return y;↵ | | 49 | return name;↵
|
49 | }↵ | | 50 | }↵
|
|
50 | /**↵ | | 51 | /**↵
|
51 | * @param y The y to set.↵ | | 52 | * @param name The name to set.↵
|
52 | */↵ | | 53 | */↵
|
53 | public void setY(BigDecimal y) {↵ | | 54 | public void set↵
|
54 | this.y = y | | 55 | Name(String name) {↵
|
| | | 56 | this.name = name
|