01: package org.compass.core.test.collection;
02:
03: import java.util.Collection;
04:
05: /**
06: * @author kimchy
07: */
08: public class X {
09:
10: private Long id;
11:
12: private String value;
13:
14: private Collection cy;
15:
16: /**
17: * @return Returns the cb.
18: */
19: public Collection getCy() {
20: return cy;
21: }
22:
23: /**
24: * @param cb
25: * The cb to set.
26: */
27: public void setCy(Collection cb) {
28: this .cy = cb;
29: }
30:
31: /**
32: * @return Returns the id.
33: */
34: public Long getId() {
35: return id;
36: }
37:
38: /**
39: * @param id
40: * The id to set.
41: */
42: public void setId(Long id) {
43: this .id = id;
44: }
45:
46: /**
47: * @return Returns the value.
48: */
49: public String getValue() {
50: return value;
51: }
52:
53: /**
54: * @param value
55: * The value to set.
56: */
57: public void setValue(String value) {
58: this.value = value;
59: }
60: }
|