1 | public class Other {
↵ | | 1 | public class HeresAnotherCrazyIdFieldName {↵
|
2 | private Long id;
↵ | | 2 | private Long heresAnotherCrazyIdFieldName;↵
|
3 | private String name;↵ | | 3 | private String name;↵
|
4 |
↵ | | |
|
|
5 | public Other() {
↵ | | 4 | public HeresAnotherCrazyIdFieldName() {↵
|
6 | }↵ | | 5 | }↵
|
7 |
↵ | | |
|
|
8 | public Other(String name) {
↵ | | 6 | public HeresAnotherCrazyIdFieldName(String name) {↵
|
9 | this.name = name;
↵ | | 7 | this.name = name;↵
|
10 | }↵ | | 8 | }↵
|
11 |
↵ | | |
|
|
12 | public Long getId() {
↵ | | 9 | public Long getHeresAnotherCrazyIdFieldName() {↵
|
13 | return id;↵ | | 10 | return ↵
|
14 | }↵ | | |
|
|
15 | public void setId(Long id↵ | | 11 | heresAnotherCrazyIdFieldName;↵
|
| | | 12 | }↵
|
|
16 | ) {
↵ | | 13 | public void setHeresAnotherCrazyIdFieldName(Long heresAnotherCrazyIdFieldName) {↵
|
17 | this.id = id;↵ | | 14 | this.↵
|
18 | }↵ | | |
|
19 |
↵ | | 15 | heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldName;↵
|
| | | 16 | }↵
|
|
20 | public String getName() {
↵ | | 17 | public String getName() {↵
|
21 | return name;
↵ | | 18 | return name;↵
|
22 | }↵ | | 19 | }↵
|
23 |
↵ | | |
|
|
24 | public void setName(String name) {
↵ | | 20 | public void setName(String name) {↵
|
25 | this.name = name;
↵ | | 21 | this.name = name;↵
|
26 | | | 22 |
|