source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/hibernate/domaine/Code.java @ 68

Last change on this file since 68 was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1package org.medias.eccad.persistance.hibernate.domaine;
2
3// Generated 1 Juin 2007 15:03:29 by Hibernate Tools 3.2.0.beta7
4
5/**
6 * Code generated by hbm2java
7 */
8public class Code implements java.io.Serializable {
9
10        // Fields   
11
12        private int idCode;
13
14        private Codification codification;
15
16        private int numCode;
17
18        private String legendCode;
19
20        // Constructors
21
22        /** default constructor */
23        public Code() {
24        }
25
26        /** minimal constructor */
27        public Code(int idCode, int numCode) {
28                this.idCode = idCode;
29                this.numCode = numCode;
30        }
31
32        /** full constructor */
33        public Code(int idCode, Codification codification, int numCode,
34                        String legendCode) {
35                this.idCode = idCode;
36                this.codification = codification;
37                this.numCode = numCode;
38                this.legendCode = legendCode;
39        }
40
41        // Property accessors
42        public int getIdCode() {
43                return this.idCode;
44        }
45
46        public void setIdCode(int idCode) {
47                this.idCode = idCode;
48        }
49
50        public Codification getCodification() {
51                return this.codification;
52        }
53
54        public void setCodification(Codification codification) {
55                this.codification = codification;
56        }
57
58        public int getNumCode() {
59                return this.numCode;
60        }
61
62        public void setNumCode(int numCode) {
63                this.numCode = numCode;
64        }
65
66        public String getLegendCode() {
67                return this.legendCode;
68        }
69
70        public void setLegendCode(String legendCode) {
71                this.legendCode = legendCode;
72        }
73
74}
Note: See TracBrowser for help on using the repository browser.