1 | public static final class Ternary {↵ | | 1 | public class Being {↵
|
2 | private String name;↵ | | 2 | private long id;↵
|
3 | private Foo foo;↵ | | 3 | private String identity;↵
|
4 | private Glarch glarch;↵ | | 4 | private ↵
|
5 | /**↵ | | |
|
6 | * Returns the foo.↵ | | |
|
7 | * @return Foo↵ | | |
|
8 | */↵ | | |
|
9 | public Foo getFoo() {↵ | | |
|
10 | return foo;↵ | | |
|
11 | }↵ | | |
|
12 | ↵ | | |
|
13 | /**↵ | | |
|
14 | * Returns the glarch.↵ | | |
|
15 | * @return Glarch↵ | | |
|
16 | */↵ | | |
|
17 | public Glarch getGlarch() {↵ | | |
|
18 | return glarch;↵ | | |
|
19 | }↵ | | |
|
20 | ↵ | | |
|
21 | /**↵ | | |
|
22 | * Returns the name.↵ | | |
|
23 | * @return String↵ | | |
|
24 | */↵ | | |
|
25 | ↵ | | 5 | String location;↵
|
| | | 6 | private String species;↵
|
| | | 7 | ↵
|
| | | 8 | public void setLocation(String location) {↵
|
| | | 9 | this.location = location;↵
|
| | | 10 | }↵
|
26 | public String getName() {↵ | | 11 | public String getLocation() {↵
|
27 | return name;↵ | | 12 | return ↵
|
28 | }↵ | | |
|
29 | ↵ | | |
|
30 | /**↵ | | |
|
31 | * Sets the foo.↵ | | |
|
32 | * @param foo The foo to set↵ | | |
|
33 | */↵ | | |
|
34 | public void setFoo(Foo foo↵ | | 13 | location;↵
|
| | | 14 | }↵
|
35 | ) {↵ | | 15 | public void setSpecies(String species) {↵
|
36 | this.foo = foo;↵ | | 16 | this.species = species;↵
|
37 | }↵ | | 17 | }↵
|
38 | ↵ | | 18 | ↵
|
39 | /**↵ | | |
|
40 | * Sets the glarch.↵ | | |
|
41 | * @param glarch The glarch to set↵ | | |
|
42 | */↵ | | |
|
43 | public void setGlarch(Glarch glarch↵ | | 19 | public String getSpecies() {↵
|
| | | 20 | return species;↵
|
| | | 21 | }↵
|
44 | ) {↵ | | 22 | public void setIdentity(String identity) {↵
|
45 | this.glarch = glarch;↵ | | 23 | this.↵
|
46 | }↵ | | |
|
47 | ↵ | | |
|
48 | /**↵ | | |
|
49 | * Sets the name.↵ | | |
|
50 | * @param name The name to set↵ | | |
|
51 | */↵ | | |
|
52 | public void setName(String name) {↵ | | |
|
53 | this.name = name↵ | | 24 | identity = identity;↵
|
| | | 25 | }↵
|
| | | 26 | public String getIdentity() {↵
|
54 | ;↵ | | 27 | return identity;↵
|
55 | | | 28 |
|