source: ether_megapoli/trunk/service/implementation/com/medias/integration/hibernate/Sequence.java @ 482

Last change on this file since 482 was 482, checked in by vmipsl, 12 years ago

BO insertion données _ insertion code medias package insertion

  • Property svn:executable set to *
File size: 3.9 KB
Line 
1package integration.hibernate;
2
3// Generated 5 févr. 2007 11:07:11 by Hibernate Tools 3.2.0.b9
4
5import java.util.Date;
6import java.util.HashSet;
7import java.util.Set;
8
9/**
10 * Sequence generated by hbm2java
11 */
12public class Sequence implements java.io.Serializable {
13
14        /**
15         *
16         */
17        private static final long serialVersionUID = 1L;
18
19        private int sequenceId;
20
21        private Commentaire commentaire;
22
23        private Jeu jeu;
24
25        private Date sequenceDated;
26
27        private Date sequenceDatef;
28
29        private Integer sequenceLatd;
30
31        private Integer sequenceLatf;
32
33        private Integer sequenceLond;
34
35        private Integer sequenceLonf;
36
37        private Integer sequenceAltd;
38
39        private Integer sequenceAltf;
40
41        private Integer sequenceHsd;
42
43        private Integer sequenceHsf;
44
45        private Set<Mesure> mesures = new HashSet<Mesure>(0);
46
47        public Sequence() {
48        }
49
50        public Sequence(int sequenceId, Jeu jeu, Date sequenceDated,
51                        Date sequenceDatef) {
52                this.sequenceId = sequenceId;
53                this.jeu = jeu;
54                this.sequenceDated = sequenceDated;
55                this.sequenceDatef = sequenceDatef;
56        }
57
58        public Sequence(int sequenceId, Commentaire commentaire, Jeu jeu,
59                        Date sequenceDated, Date sequenceDatef, Integer sequenceLatd,
60                        Integer sequenceLatf, Integer sequenceLond, Integer sequenceLonf,
61                        Integer sequenceAltd, Integer sequenceAltf, Integer sequenceHsd,
62                        Integer sequenceHsf, Set<Mesure> mesures) {
63                this.sequenceId = sequenceId;
64                this.commentaire = commentaire;
65                this.jeu = jeu;
66                this.sequenceDated = sequenceDated;
67                this.sequenceDatef = sequenceDatef;
68                this.sequenceLatd = sequenceLatd;
69                this.sequenceLatf = sequenceLatf;
70                this.sequenceLond = sequenceLond;
71                this.sequenceLonf = sequenceLonf;
72                this.sequenceAltd = sequenceAltd;
73                this.sequenceAltf = sequenceAltf;
74                this.sequenceHsd = sequenceHsd;
75                this.sequenceHsf = sequenceHsf;
76                this.mesures = mesures;
77        }
78
79        public int getSequenceId() {
80                return this.sequenceId;
81        }
82
83        public void setSequenceId(int sequenceId) {
84                this.sequenceId = sequenceId;
85        }
86
87        public Commentaire getCommentaire() {
88                return this.commentaire;
89        }
90
91        public void setCommentaire(Commentaire commentaire) {
92                this.commentaire = commentaire;
93        }
94
95        public Jeu getJeu() {
96                return this.jeu;
97        }
98
99        public void setJeu(Jeu jeu) {
100                this.jeu = jeu;
101        }
102
103        public Date getSequenceDated() {
104                return this.sequenceDated;
105        }
106
107        public void setSequenceDated(Date sequenceDated) {
108                this.sequenceDated = sequenceDated;
109        }
110
111        public Date getSequenceDatef() {
112                return this.sequenceDatef;
113        }
114
115        public void setSequenceDatef(Date sequenceDatef) {
116                this.sequenceDatef = sequenceDatef;
117        }
118
119        public Integer getSequenceLatd() {
120                return this.sequenceLatd;
121        }
122
123        public void setSequenceLatd(Integer sequenceLatd) {
124                this.sequenceLatd = sequenceLatd;
125        }
126
127        public Integer getSequenceLatf() {
128                return this.sequenceLatf;
129        }
130
131        public void setSequenceLatf(Integer sequenceLatf) {
132                this.sequenceLatf = sequenceLatf;
133        }
134
135        public Integer getSequenceLond() {
136                return this.sequenceLond;
137        }
138
139        public void setSequenceLond(Integer sequenceLond) {
140                this.sequenceLond = sequenceLond;
141        }
142
143        public Integer getSequenceLonf() {
144                return this.sequenceLonf;
145        }
146
147        public void setSequenceLonf(Integer sequenceLonf) {
148                this.sequenceLonf = sequenceLonf;
149        }
150
151        public Integer getSequenceAltd() {
152                return this.sequenceAltd;
153        }
154
155        public void setSequenceAltd(Integer sequenceAltd) {
156                this.sequenceAltd = sequenceAltd;
157        }
158
159        public Integer getSequenceAltf() {
160                return this.sequenceAltf;
161        }
162
163        public void setSequenceAltf(Integer sequenceAltf) {
164                this.sequenceAltf = sequenceAltf;
165        }
166
167        public Integer getSequenceHsd() {
168                return this.sequenceHsd;
169        }
170
171        public void setSequenceHsd(Integer sequenceHsd) {
172                this.sequenceHsd = sequenceHsd;
173        }
174
175        public Integer getSequenceHsf() {
176                return this.sequenceHsf;
177        }
178
179        public void setSequenceHsf(Integer sequenceHsf) {
180                this.sequenceHsf = sequenceHsf;
181        }
182
183        public Set<Mesure> getMesures() {
184                return this.mesures;
185        }
186
187        public void setMesures(Set<Mesure> mesures) {
188                this.mesures = mesures;
189        }
190
191}
Note: See TracBrowser for help on using the repository browser.