KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > userid > ConventionHelper


1 package org.objectweb.speedo.pobjects.userid;
2
3 import java.util.Date JavaDoc;
4
5 /**
6  * Table des conventions.
7  *
8  * TSMF7B00
9  *
10  * @persistent
11  * @rdbPhysicalName ConventionHelper
12  * @rdbPhysicalPrimaryKeyName DSMF7B00
13  */

14 public class ConventionHelper {
15
16   /** Identifiant unique de serialisation */
17   static final private long serialVersionUID = 0;
18
19   /**
20    * @rdbPhysicalName DDMEC
21    * @rdbNotNull
22    * @rdbSize 7
23    * @rdbDigits 0
24    * @rdbLogicalType Date
25    * @rdbPrimaryKey
26    */

27   private Date JavaDoc ddmec;
28
29   /** Code marque */
30   private String JavaDoc cdmem;
31
32   /** Code domaine */
33   private String JavaDoc cdmed;
34
35   /** Code competence */
36   private String JavaDoc cdmec;
37
38   /** Code specialite elementaire */
39   private String JavaDoc cdmese;
40
41   /** Code intervenant */
42   private long nomep;
43   
44     /**
45    * @rdbPhysicalName KSMF7B00
46    * @rdbIdentifying
47    */

48   private IntervenantHelper intervenant;
49
50   public String JavaDoc getCdmec() {
51     return cdmec;
52   }
53
54   public String JavaDoc getCdmem() {
55     return cdmem;
56   }
57
58   public String JavaDoc 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 JavaDoc getDdmec() {
71     return ddmec;
72   }
73
74   public String JavaDoc getCdmese() {
75     return cdmese;
76   }
77
78   public void setCdmec(String JavaDoc pCdmec) {
79     this.cdmec = pCdmec;
80   }
81
82   public void setCdmem(String JavaDoc pCdmem) {
83     this.cdmem = pCdmem;
84   }
85
86   public void setCdmed(String JavaDoc 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 JavaDoc pDdmec) {
99     this.ddmec = pDdmec;
100   }
101
102   public void setCdmese(String JavaDoc pCdmese) {
103     this.cdmese = pCdmese;
104   }
105
106   /**
107    * Constructeur par defaut.
108    */

109   public ConventionHelper() {
110   }
111
112 }
113
Popular Tags