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 Bar {
08: String barId;
09: Collection foos;
10:
11: public String getBarId() {
12: return barId;
13: }
14:
15: public void setBarId(String barId) {
16: this .barId = barId;
17: }
18:
19: public Collection getFoos() {
20: return foos;
21: }
22:
23: public void setFoos(Collection foos) {
24: this.foos = foos;
25: }
26:
27: }
|