1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.ibatis.submitted.lazyload_proxyfactory_comparison;
17
18 public class UserWithGetXxxWithInterface implements Owned<Group> {
19
20 private Integer id;
21 private String name;
22 private Group owner;
23
24 public Integer getId() {
25 return id;
26 }
27
28 public void setId(Integer id) {
29 this.id = id;
30 }
31
32 public String getName() {
33 return name;
34 }
35
36 public void setName(String name) {
37 this.name = name;
38 }
39
40 @Override
41 public Group getOwner() {
42 return owner;
43 }
44
45 @Override
46 public void setOwner(Group owner) {
47 this.owner = owner;
48 }
49
50 public Object getXxx() {
51 return null;
52 }
53 }