1 | public class ListOwner {
↵ | | 1 | public class MoreCrazyIdFieldNameStuffEntity {↵
|
2 | private String name;↵ | | 2 | private ↵
|
3 | private ListOwner parent;↵ | | |
|
4 | private List children = new ArrayList();↵ | | |
|
|
5 | public ListOwner↵ | | 3 | Long moreCrazyIdFieldNameStuffEntity;↵
|
| | | 4 | private HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName; // silly ain't it ;)↵
|
| | | 5 | private String name;↵
|
|
6 | () {
↵ | | 6 | public MoreCrazyIdFieldNameStuffEntity() {↵
|
7 | }↵ | | 7 | }↵
|
8 |
↵ | | |
|
|
9 | public ListOwner(String name) {
↵ | | 8 | public MoreCrazyIdFieldNameStuffEntity(String name) {↵
|
10 | this.name = name;
↵ | | 9 | this.name = name;↵
|
11 | }↵ | | 10 | }↵
|
12 |
↵ | | |
|
|
13 | public String getName() {
↵ | | 11 | public Long getMoreCrazyIdFieldNameStuffEntity() {↵
|
14 | return name;↵ | | 12 | return ↵
|
15 | }↵ | | |
|
16 |
↵ | | 13 | moreCrazyIdFieldNameStuffEntity;↵
|
| | | 14 | }↵
|
|
17 | public void setName(String name) {
↵ | | 15 | public void setMoreCrazyIdFieldNameStuffEntity(Long moreCrazyIdFieldNameStuffEntity) {↵
|
18 | this.name = name;↵ | | 16 | this.↵
|
19 | }↵ | | |
|
|
20 | public ListOwner getParent↵ | | 17 | moreCrazyIdFieldNameStuffEntity = moreCrazyIdFieldNameStuffEntity;↵
|
| | | 18 | }↵
|
|
21 | () {
↵ | | 19 | public HeresAnotherCrazyIdFieldName getHeresAnotherCrazyIdFieldName() {↵
|
22 | return parent;↵ | | 20 | return ↵
|
23 | }↵ | | |
|
|
24 | public void setParent(ListOwner parent↵ | | 21 | heresAnotherCrazyIdFieldName;↵
|
| | | 22 | }↵
|
|
25 | ) {
↵ | | 23 | public void setHeresAnotherCrazyIdFieldName(HeresAnotherCrazyIdFieldName heresAnotherCrazyIdFieldName) {↵
|
26 | this.parent = parent;↵ | | 24 | this.↵
|
27 | }↵ | | |
|
|
28 | public List getChildren↵ | | 25 | heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldName;↵
|
| | | 26 | }↵
|
|
29 | () {
↵ | | 27 | public String getName() {↵
|
30 | return children;↵ | | 28 | return ↵
|
31 | }↵ | | |
|
32 |
↵ | | 29 | name;↵
|
| | | 30 | }↵
|
|
33 | public void setChildren(List children) {
↵ | | 31 | public void setName(String name) {↵
|
34 | this.children = children | | 32 | this.name = name
|