1 | public class HeresAnotherCrazyIdFieldName {↵ | | 1 | public static class XX {↵
|
2 | private Long heresAnotherCrazyIdFieldName;↵ | | 2 | private Long id;↵
|
3 | private String name;↵ | | 3 | private X x;↵
|
|
4 | public HeresAnotherCrazyIdFieldName() {↵ | | 4 | private XX() {↵
|
5 | }↵ | | 5 | }↵
|
|
6 | public HeresAnotherCrazyIdFieldName(String name) {↵ | | 6 | public XX(X x) {↵
|
7 | this.name = name;↵ | | 7 | this.x = x;↵
|
8 | }↵ | | 8 | }↵
|
|
9 | public Long getHeresAnotherCrazyIdFieldName() {↵ | | 9 | public Long getId() {↵
|
10 | return heresAnotherCrazyIdFieldName;↵ | | 10 | return id;↵
|
11 | }↵ | | 11 | }↵
|
|
12 | public void setHeresAnotherCrazyIdFieldName(Long heresAnotherCrazyIdFieldName) {↵ | | 12 | public void setId(Long id) {↵
|
13 | this.heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldName;↵ | | 13 | this.id = id;↵
|
14 | }↵ | | 14 | }↵
|
|
15 | public String getName() {↵ | | 15 | public X getX() {↵
|
16 | return name;↵ | | 16 | return x;↵
|
17 | }↵ | | 17 | }↵
|
|
18 | public void setName(String name) {↵ | | 18 | public void setX(X x) {↵
|
19 | this.name = name;↵ | | 19 | this.x = x;↵
|
20 | | | 20 |
|