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