KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.speedo.pobjects.userid;
2
3 import java.util.Collection JavaDoc;
4
5 /**
6  * Table des intervenants.
7  *
8  * TSMF7D00
9  *
10  * @persistent
11  * @rdbPhysicalName IntervenantHelper
12  * @rdbPhysicalPrimaryKeyName DSMF7D00
13  */

14 public class IntervenantHelper {
15
16   /** Identifiant unique de sérialisation */
17   static final private long serialVersionUID = 0;
18
19   /**
20    * @rdbPhysicalName NOMEP
21    * @rdbNotNull
22    * @rdbSize 8
23    * @rdbDigits 0
24    * @rdbLogicalType DECIMAL
25    * @rdbPrimaryKey
26    */

27   private long nomep;
28
29   /** Liste des conventions */
30   private Collection JavaDoc conventions;
31   
32   /**
33    * Constructeur par défaut.
34    */

35   public IntervenantHelper() {
36   }
37  
38    /**
39    * Getter de nomep.
40    *
41    * @return nomep
42    */

43   public long getNomep() {
44     return nomep;
45   }
46   
47   /**
48    * Setter de nomep.
49    *
50    * @param pNomep
51    * Nouvelle valeur de nomep
52    */

53   public void setNomep(long pNomep) {
54     nomep = pNomep;
55   }
56   
57   /**
58    * Getter de conventions.
59    *
60    * @return conventions
61    */

62   public Collection JavaDoc getConventions() {
63     return conventions;
64   }
65
66    /**
67    * Setter de conventions.
68    *
69    * @param pConventions
70    * Nouvelle valeur de conventions
71    */

72   public void setConventions(Collection JavaDoc pConventions) {
73     conventions = pConventions;
74   }
75
76 }
77
Popular Tags