1 25 26 package org.objectweb.speedo.pobjects.detach.groupama; 27 28 31 public class ZoneGeographiqueHelper { 32 33 private int id; 34 private CommuneHelper commune; 35 private ConventionHelper convention; 36 37 public int getId() { 38 return id; 39 } 40 public void setId(int id) { 41 this.id = id; 42 } 43 44 public CommuneHelper getCommune() { 45 return commune; 46 } 47 public void setCommune(CommuneHelper commune) { 48 this.commune = commune; 49 } 50 51 52 public ConventionHelper getConvention() { 53 return convention; 54 } 55 public void setConvention(ConventionHelper convention) { 56 this.convention = convention; 57 } 58 } 59 | Popular Tags |