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