Subversion Repositories eFlore/Applications.coel

Rev

Rev 956 | Rev 1210 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 956 Rev 1173
1
package org.tela_botanica.client.modeles.collection;
1
package org.tela_botanica.client.modeles.collection;
2
 
2
 
3
import java.util.Iterator;
3
import java.util.Iterator;
4
import java.util.Set;
4
import java.util.Set;
5
 
5
 
6
import org.tela_botanica.client.modeles.aDonnee;
6
import org.tela_botanica.client.modeles.aDonnee;
7
 
7
 
8
import com.google.gwt.json.client.JSONObject;
8
import com.google.gwt.json.client.JSONObject;
9
 
9
 
10
public class CollectionBotanique extends aDonnee {
10
public class CollectionBotanique extends aDonnee {
11
 
11
 
12
	private static final long serialVersionUID = -6659148189825855729L;
12
	private static final long serialVersionUID = -6659148189825855729L;
13
	
13
	
14
	public static final String PREFIXE = "ccb";
14
	public static final String PREFIXE = "ccb";
-
 
15
	public static String[] champsObligatoires = {"ccb_id_collection"};
15
	
16
	
16
	public CollectionBotanique() {
17
	public CollectionBotanique() {
17
	}
18
	}
18
	
19
	
19
	public CollectionBotanique(JSONObject botanique) {
20
	public CollectionBotanique(JSONObject botanique) {
20
		// l'objet JSON est une table de hachage
21
		// l'objet JSON est une table de hachage
21
		Set<String> im = botanique.keySet();
22
		Set<String> im = botanique.keySet();
22
 
23
 
23
		// Parcourt pour chaque clé
24
		// Parcourt pour chaque clé
24
		for (Iterator<String> it = im.iterator(); it.hasNext();) {
25
		for (Iterator<String> it = im.iterator(); it.hasNext();) {
25
			// Si elle est associée à une valeur, nous l'ajoutons
26
			// Si elle est associée à une valeur, nous l'ajoutons
26
			String cle = it.next();
27
			String cle = it.next();
27
			if (cle.startsWith(PREFIXE+"_")) {
28
			if (cle.startsWith(PREFIXE+"_")) {
28
				// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
29
				// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
29
				String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
30
				String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
30
				// Sinon, nous ajoutons la clé avec une valeur vide
31
				// Sinon, nous ajoutons la clé avec une valeur vide
31
				String valeur = "";
32
				String valeur = "";
32
				if (botanique.get(cle).isString() != null) {
33
				if (botanique.get(cle).isString() != null) {
33
					valeur = botanique.get(cle).isString().stringValue();
34
					valeur = botanique.get(cle).isString().stringValue();
34
				}
35
				}
35
				this.set(cleObjet, valeur);
36
				this.set(cleObjet, valeur);
36
			}
37
			}
37
		}
38
		}
38
	}
39
	}
39
	
40
	
40
	@Override
41
	@Override
41
	protected String getPrefixe() {
42
	protected String getPrefixe() {
42
		return PREFIXE;
43
		return PREFIXE;
43
	}
44
	}
-
 
45
	
-
 
46
	protected String[] getChampsObligatoires()	{
-
 
47
		return champsObligatoires;
44
	
48
	}
45
	// ID
49
	// ID
46
	public String getId() {
50
	public String getId() {
47
		return renvoyerValeurCorrecte("id_collection");
51
		return renvoyerValeurCorrecte("id_collection");
48
	}
52
	}
49
	public void setId(String idCollection) {
53
	public void setId(String idCollection) {
50
		this.set("id_collection", idCollection);
54
		this.set("id_collection", idCollection);
51
	}
55
	}
52
	
56
	
53
	// NBRE ECHANTILLON
57
	// NBRE ECHANTILLON
54
	public String getNbreEchantillon() {
58
	public String getNbreEchantillon() {
55
		return renvoyerValeurCorrecte("nbre_echantillon");
59
		return renvoyerValeurCorrecte("nbre_echantillon");
56
	}
60
	}
57
	public void setNbreEchantillon(String type) {
61
	public void setNbreEchantillon(String type) {
58
		this.set("nbre_echantillon", type);
62
		this.set("nbre_echantillon", type);
59
	}
63
	}
60
	
64
	
61
	// TYPE
65
	// TYPE
62
	public String getType() {
66
	public String getType() {
63
		return renvoyerValeurCorrecte("ce_truk_type");
67
		return renvoyerValeurCorrecte("ce_truk_type");
64
	}
68
	}
65
	public void setType(String type) {
69
	public void setType(String type) {
66
		this.set("ce_truk_type", type);
70
		this.set("ce_truk_type", type);
67
	}
71
	}
68
	
72
	
69
	// UNITÉ RANGEMENT
73
	// UNITÉ RANGEMENT
70
	public String getUniteRangement() {
74
	public String getUniteRangement() {
71
		return renvoyerValeurCorrecte("truk_unite_rangement");
75
		return renvoyerValeurCorrecte("truk_unite_rangement");
72
	}
76
	}
73
	public void setUniteRangement(String uniteRangement) {
77
	public void setUniteRangement(String uniteRangement) {
74
		this.set("truk_unite_rangement", uniteRangement);
78
		this.set("truk_unite_rangement", uniteRangement);
75
	}
79
	}
76
	
80
	
77
	// UNITÉ RANGEMENT ÉTAT
81
	// UNITÉ RANGEMENT ÉTAT
78
	public String getUniteRangementEtat() {
82
	public String getUniteRangementEtat() {
79
		return renvoyerValeurCorrecte("ce_unite_rangement_etat");
83
		return renvoyerValeurCorrecte("ce_unite_rangement_etat");
80
	}
84
	}
81
	public void setUniteRangementEtat(String uniteRangementEtat) {
85
	public void setUniteRangementEtat(String uniteRangementEtat) {
82
		this.set("ce_unite_rangement_etat", uniteRangementEtat);
86
		this.set("ce_unite_rangement_etat", uniteRangementEtat);
83
	}
87
	}
84
 
88
 
85
	// UNITÉ BASE
89
	// UNITÉ BASE
86
	public String getUniteBase() {
90
	public String getUniteBase() {
87
		return renvoyerValeurCorrecte("truk_unite_base");
91
		return renvoyerValeurCorrecte("truk_unite_base");
88
	}
92
	}
89
	public void setUniteBase(String uniteBase) {
93
	public void setUniteBase(String uniteBase) {
90
		this.set("truk_unite_base", uniteBase);
94
		this.set("truk_unite_base", uniteBase);
91
	}
95
	}
92
	
96
	
93
	// CONSERVATION PAPIER TYPE
97
	// CONSERVATION PAPIER TYPE
94
	public String getConservationPapierType() {
98
	public String getConservationPapierType() {
95
		return renvoyerValeurCorrecte("truk_conservation_papier_type");
99
		return renvoyerValeurCorrecte("truk_conservation_papier_type");
96
	}
100
	}
97
	public void setConservationPapierType(String typePapierConservation) {
101
	public void setConservationPapierType(String typePapierConservation) {
98
		this.set("truk_conservation_papier_type", typePapierConservation);
102
		this.set("truk_conservation_papier_type", typePapierConservation);
99
	}
103
	}
100
	
104
	
101
	// CONSERVATION MÉTHODE
105
	// CONSERVATION MÉTHODE
102
	public String getConservationMethode() {
106
	public String getConservationMethode() {
103
		return renvoyerValeurCorrecte("truk_conservation_methode");
107
		return renvoyerValeurCorrecte("truk_conservation_methode");
104
	}
108
	}
105
	public void setConservationMethode(String methodeConservation) {
109
	public void setConservationMethode(String methodeConservation) {
106
		this.set("truk_conservation_methode", methodeConservation);
110
		this.set("truk_conservation_methode", methodeConservation);
107
	}
111
	}
108
	
112
	
109
	// ÉTIQUETTE FIXATION POURCENT
113
	// ÉTIQUETTE FIXATION POURCENT
110
	public String getEtiquetteFixationPourcent() {
114
	public String getEtiquetteFixationPourcent() {
111
		return renvoyerValeurCorrecte("etiquette_fixation_pourcent");
115
		return renvoyerValeurCorrecte("etiquette_fixation_pourcent");
112
	}
116
	}
113
	public void setEtiquetteFixationPourcent(String etiquetteFixationPourcent) {
117
	public void setEtiquetteFixationPourcent(String etiquetteFixationPourcent) {
114
		this.set("etiquette_fixation_pourcent", etiquetteFixationPourcent);
118
		this.set("etiquette_fixation_pourcent", etiquetteFixationPourcent);
115
	}
119
	}
116
	
120
	
117
	// SPÉCIMEN FIXATION POURCENT
121
	// SPÉCIMEN FIXATION POURCENT
118
	public String getSpecimenFixationPourcent() {
122
	public String getSpecimenFixationPourcent() {
119
		return renvoyerValeurCorrecte("specimen_fixation_pourcent");
123
		return renvoyerValeurCorrecte("specimen_fixation_pourcent");
120
	}
124
	}
121
	public void setSpecimenFixationPourcent(String specimenFixationPourcent) {
125
	public void setSpecimenFixationPourcent(String specimenFixationPourcent) {
122
		this.set("specimen_fixation_pourcent", specimenFixationPourcent);
126
		this.set("specimen_fixation_pourcent", specimenFixationPourcent);
123
	}
127
	}
124
	
128
	
125
	// SPÉCIMEN FIXATION MÉTHODE
129
	// SPÉCIMEN FIXATION MÉTHODE
126
	public String getSpecimenFixationMethode() {
130
	public String getSpecimenFixationMethode() {
127
		return renvoyerValeurCorrecte("truk_specimen_fixation_methode");
131
		return renvoyerValeurCorrecte("truk_specimen_fixation_methode");
128
	}
132
	}
129
	public void setSpecimenFixationMethode(String specimenFixationMethode) {
133
	public void setSpecimenFixationMethode(String specimenFixationMethode) {
130
		this.set("truk_specimen_fixation_methode", specimenFixationMethode);
134
		this.set("truk_specimen_fixation_methode", specimenFixationMethode);
131
	}
135
	}
132
	
136
	
133
	// ÉTIQUETTE FIXATION SUPPORT
137
	// ÉTIQUETTE FIXATION SUPPORT
134
	public String getEtiquetteFixationSupport() {
138
	public String getEtiquetteFixationSupport() {
135
		return renvoyerValeurCorrecte("truk_etiquette_fixation_support");
139
		return renvoyerValeurCorrecte("truk_etiquette_fixation_support");
136
	}
140
	}
137
	public void setEtiquetteFixationSupport(String etiquetteFixationSupport) {
141
	public void setEtiquetteFixationSupport(String etiquetteFixationSupport) {
138
		this.set("truk_etiquette_fixation_support", etiquetteFixationSupport);
142
		this.set("truk_etiquette_fixation_support", etiquetteFixationSupport);
139
	}
143
	}
140
	
144
	
141
	// ÉTIQUETTE FIXATION SPECIMEN
145
	// ÉTIQUETTE FIXATION SPECIMEN
142
	public String getEtiquetteFixationSpecimen() {
146
	public String getEtiquetteFixationSpecimen() {
143
		return renvoyerValeurCorrecte("truk_etiquette_fixation_specimen");
147
		return renvoyerValeurCorrecte("truk_etiquette_fixation_specimen");
144
	}
148
	}
145
	public void setEtiquetteFixationSpecimen(String etiquetteFixationSpecimen) {
149
	public void setEtiquetteFixationSpecimen(String etiquetteFixationSpecimen) {
146
		this.set("truk_etiquette_fixation_specimen", etiquetteFixationSpecimen);
150
		this.set("truk_etiquette_fixation_specimen", etiquetteFixationSpecimen);
147
	}
151
	}
148
	
152
	
149
	// ÉTIQUETTE ÉCRITURE
153
	// ÉTIQUETTE ÉCRITURE
150
	public String getEtiquetteEcriture() {
154
	public String getEtiquetteEcriture() {
151
		return renvoyerValeurCorrecte("truk_etiquette_ecriture");
155
		return renvoyerValeurCorrecte("truk_etiquette_ecriture");
152
	}
156
	}
153
	public void setEtiquetteEcriture(String etiquetteEcriture) {
157
	public void setEtiquetteEcriture(String etiquetteEcriture) {
154
		this.set("truk_etiquette_ecriture", etiquetteEcriture);
158
		this.set("truk_etiquette_ecriture", etiquetteEcriture);
155
	}
159
	}
156
	
160
	
157
	// TRAITEMENT
161
	// TRAITEMENT
158
	public String getTraitement() {
162
	public String getTraitement() {
159
		return renvoyerValeurCorrecte("ce_traitement");
163
		return renvoyerValeurCorrecte("ce_traitement");
160
	}
164
	}
161
	public void setTraitement(String traitement) {
165
	public void setTraitement(String traitement) {
162
		this.set("ce_traitement", traitement);
166
		this.set("ce_traitement", traitement);
163
	}
167
	}
164
	
168
	
165
	// TRAITEMENT POISON
169
	// TRAITEMENT POISON
166
	public String getTraitementPoison() {
170
	public String getTraitementPoison() {
167
		return renvoyerValeurCorrecte("truk_traitement_poison");
171
		return renvoyerValeurCorrecte("truk_traitement_poison");
168
	}
172
	}
169
	public void setTraitementPoison(String traitementPoison) {
173
	public void setTraitementPoison(String traitementPoison) {
170
		this.set("truk_traitement_poison", traitementPoison);
174
		this.set("truk_traitement_poison", traitementPoison);
171
	}
175
	}
172
	
176
	
173
	// TRAITEMENT INSECTE
177
	// TRAITEMENT INSECTE
174
	public String getTraitementInsecte() {
178
	public String getTraitementInsecte() {
175
		return renvoyerValeurCorrecte("truk_traitement_insecte");
179
		return renvoyerValeurCorrecte("truk_traitement_insecte");
176
	}
180
	}
177
	public void setTraitementInsecte(String traitementInsecte) {
181
	public void setTraitementInsecte(String traitementInsecte) {
178
		this.set("truk_traitement_insecte", traitementInsecte);
182
		this.set("truk_traitement_insecte", traitementInsecte);
179
	}
183
	}
180
	
184
	
181
	// ÉTAT GÉNÉRAL
185
	// ÉTAT GÉNÉRAL
182
	public String getEtatGeneral() {
186
	public String getEtatGeneral() {
183
		return renvoyerValeurCorrecte("ce_etat_general");
187
		return renvoyerValeurCorrecte("ce_etat_general");
184
	}
188
	}
185
	public void setEtatGeneral(String etatGeneral) {
189
	public void setEtatGeneral(String etatGeneral) {
186
		this.set("ce_etat_general", etatGeneral);
190
		this.set("ce_etat_general", etatGeneral);
187
	}
191
	}
188
	
192
	
189
	// DÉGRADATION SPECIMEN
193
	// DÉGRADATION SPECIMEN
190
	public String getDegradationSpecimen() {
194
	public String getDegradationSpecimen() {
191
		return renvoyerValeurCorrecte("truk_degradation_specimen");
195
		return renvoyerValeurCorrecte("truk_degradation_specimen");
192
	}
196
	}
193
	public void setDegradationSpecimen(String degradationSpecimen) {
197
	public void setDegradationSpecimen(String degradationSpecimen) {
194
		this.set("truk_degradation_specimen", degradationSpecimen);
198
		this.set("truk_degradation_specimen", degradationSpecimen);
195
	}
199
	}
196
	
200
	
197
	// DÉGRADATION PRÉSENTATION
201
	// DÉGRADATION PRÉSENTATION
198
	public String getDegradationPresentation() {
202
	public String getDegradationPresentation() {
199
		return renvoyerValeurCorrecte("truk_degradation_presentation");
203
		return renvoyerValeurCorrecte("truk_degradation_presentation");
200
	}
204
	}
201
	public void setDegradationPresentation(String degradationPresentation) {
205
	public void setDegradationPresentation(String degradationPresentation) {
202
		this.set("truk_degradation_presentation", degradationPresentation);
206
		this.set("truk_degradation_presentation", degradationPresentation);
203
	}
207
	}
204
	
208
	
205
	// DÉTERMINATION
209
	// DÉTERMINATION
206
	public String getDetermination() {
210
	public String getDetermination() {
207
		return renvoyerValeurCorrecte("ce_determination");
211
		return renvoyerValeurCorrecte("ce_determination");
208
	}
212
	}
209
	public void setDetermination(String determination) {
213
	public void setDetermination(String determination) {
210
		this.set("ce_determination", determination);
214
		this.set("ce_determination", determination);
211
	}
215
	}
212
	
216
	
213
	// NATURE
217
	// NATURE
214
	public String getNature() {
218
	public String getNature() {
215
		return renvoyerValeurCorrecte("truk_nature");
219
		return renvoyerValeurCorrecte("truk_nature");
216
	}
220
	}
217
	public void setNature(String nature) {
221
	public void setNature(String nature) {
218
		this.set("truk_nature", nature);
222
		this.set("truk_nature", nature);
219
	}
223
	}
220
	
224
	
221
	// SPÉCIALITÉ
225
	// SPÉCIALITÉ
222
	public String getSpecialite() {
226
	public String getSpecialite() {
223
		return renvoyerValeurCorrecte("specialite");
227
		return renvoyerValeurCorrecte("specialite");
224
	}
228
	}
225
	public void setSpecialite(String specialite) {
229
	public void setSpecialite(String specialite) {
226
		this.set("specialite", specialite);
230
		this.set("specialite", specialite);
227
	}
231
	}
228
	
232
	
229
	// RÉCOLTE DATE DÉBUT
233
	// RÉCOLTE DATE DÉBUT
230
	public String getRecolteDateDebut() {
234
	public String getRecolteDateDebut() {
231
		return renvoyerValeurCorrecte("recolte_date_debut");
235
		return renvoyerValeurCorrecte("recolte_date_debut");
232
	}
236
	}
233
	public void setRecolteDateDebut(String dateDebut) {
237
	public void setRecolteDateDebut(String dateDebut) {
234
		this.set("recolte_date_debut", dateDebut);
238
		this.set("recolte_date_debut", dateDebut);
235
	}
239
	}
236
	
240
	
237
	// RÉCOLTE DATE DÉBUT TYPE
241
	// RÉCOLTE DATE DÉBUT TYPE
238
	public String getRecolteDateDebutType() {
242
	public String getRecolteDateDebutType() {
239
		return renvoyerValeurCorrecte("ce_recolte_date_debut_type");
243
		return renvoyerValeurCorrecte("ce_recolte_date_debut_type");
240
	}
244
	}
241
	public void setRecolteDateDebutType(String dateDebutType) {
245
	public void setRecolteDateDebutType(String dateDebutType) {
242
		this.set("ce_recolte_date_debut_type", dateDebutType);
246
		this.set("ce_recolte_date_debut_type", dateDebutType);
243
	}
247
	}
244
	
248
	
245
	// RÉCOLTE DATE FIN
249
	// RÉCOLTE DATE FIN
246
	public String getRecolteDateFin() {
250
	public String getRecolteDateFin() {
247
		return renvoyerValeurCorrecte("recolte_date_fin");
251
		return renvoyerValeurCorrecte("recolte_date_fin");
248
	}
252
	}
249
	public void setRecolteDateFin(String dateFin) {
253
	public void setRecolteDateFin(String dateFin) {
250
		this.set("recolte_date_fin", dateFin);
254
		this.set("recolte_date_fin", dateFin);
251
	}
255
	}
252
	
256
	
253
	// RÉCOLTE DATE DÉBUT TYPE
257
	// RÉCOLTE DATE DÉBUT TYPE
254
	public String getRecolteDateFinType() {
258
	public String getRecolteDateFinType() {
255
		return renvoyerValeurCorrecte("ce_recolte_date_fin_type");
259
		return renvoyerValeurCorrecte("ce_recolte_date_fin_type");
256
	}
260
	}
257
	public void setRecolteDateFinType(String dateFinType) {
261
	public void setRecolteDateFinType(String dateFinType) {
258
		this.set("ce_recolte_date_fin_type", dateFinType);
262
		this.set("ce_recolte_date_fin_type", dateFinType);
259
	}
263
	}
260
	
264
	
261
	// CLASSEMENT ANNOTATION
265
	// CLASSEMENT ANNOTATION
262
	public String getClassementAnnotation() {
266
	public String getClassementAnnotation() {
263
		return renvoyerValeurCorrecte("annotation_classement");
267
		return renvoyerValeurCorrecte("annotation_classement");
264
	}
268
	}
265
	public void setClassementAnnotation(String annotation) {
269
	public void setClassementAnnotation(String annotation) {
266
		this.set("annotation_classement", annotation);
270
		this.set("annotation_classement", annotation);
267
	}
271
	}
268
	
272
	
269
	// CLASSEMENT ÉTAT
273
	// CLASSEMENT ÉTAT
270
	public String getClassementEtat() {
274
	public String getClassementEtat() {
271
		return renvoyerValeurCorrecte("ce_classement_etat");
275
		return renvoyerValeurCorrecte("ce_classement_etat");
272
	}
276
	}
273
	public void setClassementEtat(String classementEtat) {
277
	public void setClassementEtat(String classementEtat) {
274
		this.set("ce_classement_etat", classementEtat);
278
		this.set("ce_classement_etat", classementEtat);
275
	}
279
	}
276
	
280
	
277
	// ÉTIQUETTE RENSEIGNEMENT
281
	// ÉTIQUETTE RENSEIGNEMENT
278
	public String getEtiquetteRenseignement() {
282
	public String getEtiquetteRenseignement() {
279
		return renvoyerValeurCorrecte("truk_etiquette_renseignement");
283
		return renvoyerValeurCorrecte("truk_etiquette_renseignement");
280
	}
284
	}
281
	public void setEtiquetteRenseignement(String etiquetteRenseignement) {
285
	public void setEtiquetteRenseignement(String etiquetteRenseignement) {
282
		this.set("truk_etiquette_renseignement", etiquetteRenseignement);
286
		this.set("truk_etiquette_renseignement", etiquetteRenseignement);
283
	}
287
	}
284
	
288
	
285
	// PRÉCISION LOCALITÉ
289
	// PRÉCISION LOCALITÉ
286
	public String getPrecisionLocalite() {
290
	public String getPrecisionLocalite() {
287
		return renvoyerValeurCorrecte("ce_precision_localite");
291
		return renvoyerValeurCorrecte("ce_precision_localite");
288
	}
292
	}
289
	public void setPrecisionLocalite(String precisionLocalite) {
293
	public void setPrecisionLocalite(String precisionLocalite) {
290
		this.set("ce_precision_localite", precisionLocalite);
294
		this.set("ce_precision_localite", precisionLocalite);
291
	}
295
	}
292
	
296
	
293
	// PRÉCISION DATE
297
	// PRÉCISION DATE
294
	public String getPrecisionDate() {
298
	public String getPrecisionDate() {
295
		return renvoyerValeurCorrecte("ce_precision_date");
299
		return renvoyerValeurCorrecte("ce_precision_date");
296
	}
300
	}
297
	public void setPrecisionDate(String precisionDate) {
301
	public void setPrecisionDate(String precisionDate) {
298
		this.set("ce_precision_date", precisionDate);
302
		this.set("ce_precision_date", precisionDate);
299
	}
303
	}
300
	
304
	
301
	// ANNOTATIONS DIVERSES
305
	// ANNOTATIONS DIVERSES
302
	public String getAnnotationsDiverses() {
306
	public String getAnnotationsDiverses() {
303
		return renvoyerValeurCorrecte("annotation_diverse");
307
		return renvoyerValeurCorrecte("annotation_diverse");
304
	}
308
	}
305
	public void setAnnotationsDiverses(String annotation) {
309
	public void setAnnotationsDiverses(String annotation) {
306
		this.set("annotation_diverse", annotation);
310
		this.set("annotation_diverse", annotation);
307
	}
311
	}
308
	
312
	
309
	// COLLECTION INTÉGRÉ
313
	// COLLECTION INTÉGRÉ
310
	public String getCollectionIntegre() {
314
	public String getCollectionIntegre() {
311
		return renvoyerValeurCorrecte("ce_collection_integre");
315
		return renvoyerValeurCorrecte("ce_collection_integre");
312
	}
316
	}
313
	public void setCollectionIntegre(String collectionIntegre) {
317
	public void setCollectionIntegre(String collectionIntegre) {
314
		this.set("ce_collection_integre", collectionIntegre);
318
		this.set("ce_collection_integre", collectionIntegre);
315
	}
319
	}
316
	
320
	
317
	// COLLECTION INTÉGRÉ INFO
321
	// COLLECTION INTÉGRÉ INFO
318
	public String getCollectionIntegreInfo() {
322
	public String getCollectionIntegreInfo() {
319
		return renvoyerValeurCorrecte("ce_collection_integre_info");
323
		return renvoyerValeurCorrecte("ce_collection_integre_info");
320
	}
324
	}
321
	public void setCollectionIntegreInfo(String collectionIntegreInfo) {
325
	public void setCollectionIntegreInfo(String collectionIntegreInfo) {
322
		this.set("ce_collection_integre_info", collectionIntegreInfo);
326
		this.set("ce_collection_integre_info", collectionIntegreInfo);
323
	}
327
	}
324
	
328
	
325
	// INVENTAIRE
329
	// INVENTAIRE
326
	public String getInventaire() {
330
	public String getInventaire() {
327
		return renvoyerValeurCorrecte("ce_inventaire");
331
		return renvoyerValeurCorrecte("ce_inventaire");
328
	}
332
	}
329
	public void setInventaire(String inventaire) {
333
	public void setInventaire(String inventaire) {
330
		this.set("ce_inventaire", inventaire);
334
		this.set("ce_inventaire", inventaire);
331
	}
335
	}
332
	
336
	
333
	// INVENTAIRE AUTEUR
337
	// INVENTAIRE AUTEUR
334
	public String getInventaireAuteur() {
338
	public String getInventaireAuteur() {
335
		return renvoyerValeurCorrecte("ce_inventaire_auteur");
339
		return renvoyerValeurCorrecte("ce_inventaire_auteur");
336
	}
340
	}
337
	public void setInventaireAuteur(String inventaireAuteur) {
341
	public void setInventaireAuteur(String inventaireAuteur) {
338
		this.set("ce_inventaire_auteur", inventaireAuteur);
342
		this.set("ce_inventaire_auteur", inventaireAuteur);
339
	}
343
	}
340
	
344
	
341
	// INVENTAIRE FORME
345
	// INVENTAIRE FORME
342
	public String getInventaireForme() {
346
	public String getInventaireForme() {
343
		return renvoyerValeurCorrecte("ce_inventaire_forme");
347
		return renvoyerValeurCorrecte("ce_inventaire_forme");
344
	}
348
	}
345
	public void setInventaireForme(String inventaireForme) {
349
	public void setInventaireForme(String inventaireForme) {
346
		this.set("ce_inventaire_forme", inventaireForme);
350
		this.set("ce_inventaire_forme", inventaireForme);
347
	}
351
	}
348
	
352
	
349
	// INVENTAIRE INFO
353
	// INVENTAIRE INFO
350
	public String getInventaireInfo() {
354
	public String getInventaireInfo() {
351
		return renvoyerValeurCorrecte("inventaire_info");
355
		return renvoyerValeurCorrecte("inventaire_info");
352
	}
356
	}
353
	public void setInventaireInfo(String inventaireInfo) {
357
	public void setInventaireInfo(String inventaireInfo) {
354
		this.set("inventaire_info", inventaireInfo);
358
		this.set("inventaire_info", inventaireInfo);
355
	}
359
	}
356
	
360
	
357
	// INVENTAIRE DIGITAL
361
	// INVENTAIRE DIGITAL
358
	public String getInventaireDigital() {
362
	public String getInventaireDigital() {
359
		return renvoyerValeurCorrecte("ce_truk_inventaire_digital");
363
		return renvoyerValeurCorrecte("ce_truk_inventaire_digital");
360
	}
364
	}
361
	public void setInventaireDigital(String inventaireDigital) {
365
	public void setInventaireDigital(String inventaireDigital) {
362
		this.set("ce_truk_inventaire_digital", inventaireDigital);
366
		this.set("ce_truk_inventaire_digital", inventaireDigital);
363
	}
367
	}
364
	
368
	
365
	// INVENTAIRE DIGITAL POURCENT
369
	// INVENTAIRE DIGITAL POURCENT
366
	public String getInventaireDigitalPourcent() {
370
	public String getInventaireDigitalPourcent() {
367
		return renvoyerValeurCorrecte("inventaire_digital_pourcent");
371
		return renvoyerValeurCorrecte("inventaire_digital_pourcent");
368
	}
372
	}
369
	public void setInventaireDigitalPourcent(String inventaireDigitalPourcent) {
373
	public void setInventaireDigitalPourcent(String inventaireDigitalPourcent) {
370
		this.set("inventaire_digital_pourcent", inventaireDigitalPourcent);
374
		this.set("inventaire_digital_pourcent", inventaireDigitalPourcent);
371
	}
375
	}
372
	
376
	
373
	// INVENTAIRE ETAT
377
	// INVENTAIRE ETAT
374
	public String getInventaireEtat() {
378
	public String getInventaireEtat() {
375
		return renvoyerValeurCorrecte("ce_inventaire_etat");
379
		return renvoyerValeurCorrecte("ce_inventaire_etat");
376
	}
380
	}
377
	public void setInventaireEtat(String inventaireEtat) {
381
	public void setInventaireEtat(String inventaireEtat) {
378
		this.set("ce_inventaire_etat", inventaireEtat);
382
		this.set("ce_inventaire_etat", inventaireEtat);
379
	}
383
	}
380
	
384
	
381
	// INVENTAIRE DONNÉES TYPES
385
	// INVENTAIRE DONNÉES TYPES
382
	public String getInventaireDonneesTypes() {
386
	public String getInventaireDonneesTypes() {
383
		return renvoyerValeurCorrecte("inventaire_donnee_type");
387
		return renvoyerValeurCorrecte("inventaire_donnee_type");
384
	}
388
	}
385
	public void setInventaireDonneesTypes(String inventaireDonneesTypes) {
389
	public void setInventaireDonneesTypes(String inventaireDonneesTypes) {
386
		this.set("inventaire_donnee_type", inventaireDonneesTypes);
390
		this.set("inventaire_donnee_type", inventaireDonneesTypes);
387
	}
391
	}
388
	
392
	
389
}
393
}