1 package org.objectweb.speedo.pobjects.userid; 2 3 import java.util.Date ; 4 5 14 public class ConventionHelper { 15 16 17 static final private long serialVersionUID = 0; 18 19 27 private Date ddmec; 28 29 30 private String cdmem; 31 32 33 private String cdmed; 34 35 36 private String cdmec; 37 38 39 private String cdmese; 40 41 42 private long nomep; 43 44 48 private IntervenantHelper intervenant; 49 50 public String getCdmec() { 51 return cdmec; 52 } 53 54 public String getCdmem() { 55 return cdmem; 56 } 57 58 public String getCdmed() { 59 return cdmed; 60 } 61 62 public IntervenantHelper getIntervenant() { 63 return intervenant; 64 } 65 66 public long getNomep() { 67 return nomep; 68 } 69 70 public Date getDdmec() { 71 return ddmec; 72 } 73 74 public String getCdmese() { 75 return cdmese; 76 } 77 78 public void setCdmec(String pCdmec) { 79 this.cdmec = pCdmec; 80 } 81 82 public void setCdmem(String pCdmem) { 83 this.cdmem = pCdmem; 84 } 85 86 public void setCdmed(String pCdmed) { 87 this.cdmed = pCdmed; 88 } 89 90 public void setIntervenant(IntervenantHelper pIntervenant) { 91 this.intervenant = pIntervenant; 92 } 93 94 public void setNomep(long pNomep) { 95 this.nomep = pNomep; 96 } 97 98 public void setDdmec(Date pDdmec) { 99 this.ddmec = pDdmec; 100 } 101 102 public void setCdmese(String pCdmese) { 103 this.cdmese = pCdmese; 104 } 105 106 109 public ConventionHelper() { 110 } 111 112 } 113 | Popular Tags |