01: /**
02: * Copyright (C) 2001-2006 France Telecom R&D
03: */package relation.many_to_many;
04:
05: import java.util.Collection;
06:
07: public class Foo {
08: String myId;
09: Collection bars;
10:
11: public Collection getBars() {
12: return bars;
13: }
14:
15: public void setBars(Collection bars) {
16: this .bars = bars;
17: }
18:
19: public String getMyId() {
20: return myId;
21: }
22:
23: public void setMyId(String myId) {
24: this.myId = myId;
25: }
26:
27: }
|