1 | public class OtherAssigned {↵ | | 1 | public ↵
|
2 | private Long id;
↵ | | 2 | static final class Component {↵
|
| | | 3 | private Calendar cal;↵
|
3 | private ParentAssigned owner;↵ | | 4 | private ↵
|
|
4 | public OtherAssigned() {↵ | | |
|
5 | }↵ | | |
|
|
6 | public OtherAssigned(Long id↵ | | 5 | Float floaty;↵
|
| | | 6 | /**↵
|
| | | 7 | * Returns the cal.↵
|
| | | 8 | * @return Calendar↵
|
| | | 9 | */↵
|
| | | 10 | public Calendar getCal() {↵
|
| | | 11 | return cal;↵
|
| | | 12 | }↵
|
| | | 13 | ↵
|
| | | 14 | /**↵
|
| | | 15 | * Sets the cal.↵
|
| | | 16 | * @param cal The cal to set↵
|
| | | 17 | */↵
|
7 | ) {
↵ | | 18 | public void setCal(Calendar cal) {↵
|
8 | this.id = id;↵ | | 19 | this.↵
|
9 | }↵ | | |
|
|
10 | public Long getId↵ | | 20 | cal = cal;↵
|
| | | 21 | }↵
|
| | | 22 | ↵
|
| | | 23 | /**↵
|
| | | 24 | * Returns the floaty.↵
|
| | | 25 | * @return Float↵
|
| | | 26 | */↵
|
11 | () {
↵ | | 27 | public Float getFloaty() {↵
|
12 | return id;↵ | | 28 | return ↵
|
13 | }↵ | | |
|
|
14 | public ParentAssigned getOwner() {↵ | | |
|
15 | return owner;↵ | | |
|
16 | }↵ | | |
|
|
17 | public void setOwner(ParentAssigned owner↵ | | 29 | floaty;↵
|
| | | 30 | }↵
|
| | | 31 | ↵
|
| | | 32 | /**↵
|
| | | 33 | * Sets the floaty.↵
|
| | | 34 | * @param floaty The floaty to set↵
|
| | | 35 | */↵
|
18 | ) {
↵ | | 36 | public void setFloaty(Float floaty) {↵
|
19 | this.owner = owner | | 37 | this.floaty = floaty
|