01: package org.objectweb.speedo.pobjects.detach.groupama;
02:
03: import java.util.ArrayList;
04: import java.util.Collection;
05:
06: /**
07: * A convention has a marque and an intervenant.
08: */
09: public class ConventionHelper {
10:
11: private MarqueHelper marque;
12: private String cdmem;
13: private IntervenantHelper intervenant;
14: private Collection zoneGeographiques;
15: private SpecialiteMercureHelper specialiteMercure;
16:
17: private int nomep;
18:
19: public ConventionHelper() {
20: this .zoneGeographiques = new ArrayList();
21: }
22:
23: public MarqueHelper getMarque() {
24: return marque;
25: }
26:
27: public String getCdmem() {
28: return cdmem;
29: }
30:
31: public IntervenantHelper getIntervenant() {
32: return intervenant;
33: }
34:
35: public int getNomep() {
36: return nomep;
37: }
38:
39: public void setMarque(MarqueHelper pMarque) {
40: this .marque = pMarque;
41: }
42:
43: public void setCdmem(String pCdmem) {
44: this .cdmem = pCdmem;
45: }
46:
47: public void setIntervenant(IntervenantHelper pIntervenant) {
48: this .intervenant = pIntervenant;
49: }
50:
51: public void setNomep(int pNomep) {
52: this .nomep = pNomep;
53: }
54:
55: public Collection getZoneGeographiques() {
56: return zoneGeographiques;
57: }
58:
59: public void setZoneGeographiques(Collection zoneGeographiques) {
60: this .zoneGeographiques = zoneGeographiques;
61: }
62:
63: public void addZoneGeographique(ZoneGeographiqueHelper zg) {
64: zoneGeographiques.add(zg);
65: }
66:
67: public SpecialiteMercureHelper getSpecialiteMercure() {
68: return specialiteMercure;
69: }
70:
71: public void setSpecialiteMercure(
72: SpecialiteMercureHelper specialiteMercure) {
73: this.specialiteMercure = specialiteMercure;
74: }
75: }
|