1 | public class ProxyBean {
↵ | | 1 | public class SubDetail {↵
|
2 | private String someString;
↵ | | 2 | private String name;↵
|
3 | private long someLong;↵ | | 3 | private long ↵
|
|
4 |
↵ | | 4 | id;↵
|
| | | 5 | /**↵
|
| | | 6 | * Returns the id.↵
|
| | | 7 | * @return long↵
|
| | | 8 | */↵
|
5 | public String getSomeString() {
↵ | | 9 | public long getId() {↵
|
6 | return someString;↵ | | 10 | return ↵
|
7 | }↵ | | |
|
|
8 | public void setSomeString(String someString) {↵ | | |
|
9 | this.someString = someString;↵ | | |
|
10 | }↵ | | |
|
|
|
11 | public long getSomeLong() {↵ | | |
|
12 | return someLong;↵ | | |
|
13 | }↵ | | |
|
14 |
↵ | | 11 | id;↵
|
| | | 12 | }↵
|
| | | 13 | ↵
|
| | | 14 | /**↵
|
| | | 15 | * Returns the name.↵
|
| | | 16 | * @return String↵
|
| | | 17 | */↵
|
| | | 18 | public String getName() {↵
|
| | | 19 | return name;↵
|
| | | 20 | }↵
|
| | | 21 | ↵
|
| | | 22 | /**↵
|
| | | 23 | * Sets the id.↵
|
| | | 24 | * @param id The id to set↵
|
| | | 25 | */↵
|
| | | 26 | public void setId(long id) {↵
|
| | | 27 | this.id = id;↵
|
| | | 28 | }↵
|
| | | 29 | ↵
|
| | | 30 | /**↵
|
| | | 31 | * Sets the name.↵
|
| | | 32 | * @param name The name to set↵
|
| | | 33 | */↵
|
15 | public void setSomeLong(long someLong) {
↵ | | 34 | public void setName(String name) {↵
|
16 | this.someLong = someLong | | 35 | this.name = name
|