Parentpublic class Parent extends Object
Fields Summary |
---|
private long | id | private int | count | private Child | child | private Object | any | private int | x |
Methods Summary |
---|
public java.lang.Object | getAny()
return any;
| public Child | getChild()
return child;
| public int | getCount()
return count;
| public long | getId()
return id;
| public int | getX()
return x;
| public void | setAny(java.lang.Object any)
this.any = any;
| public void | setChild(Child child)
this.child = child;
| public void | setCount(int count)
this.count = count;
| public void | setId(long id)
this.id = id;
| public void | setX(int x)
this.x = x;
|
|