Subversion Repositories eFlore/Applications.coel

Rev

Rev 1784 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
935 jpm 1
package org.tela_botanica.client.modeles.collection;
453 jp_milcent 2
 
1369 cyprien 3
import java.util.Iterator;
4
import java.util.Map;
5
import java.util.Set;
1173 jpm 6
 
935 jpm 7
import org.tela_botanica.client.modeles.aDonnee;
8
 
1329 cyprien 9
import com.extjs.gxt.ui.client.data.ModelData;
453 jp_milcent 10
import com.google.gwt.json.client.JSONObject;
11
 
12
public class Collection extends aDonnee {
13
 
468 jp_milcent 14
	private static final long serialVersionUID = 3295310312337145716L;
15
 
453 jp_milcent 16
	public static final String PREFIXE = "cc";
17
	private CollectionBotanique botanique = null;
883 jpm 18
	private CollectionAPersonneListe personnesLiees = null;
19
	private CollectionAPublicationListe publicationsLiees = null;
997 jpm 20
	private CollectionACommentaireListe commentairesLiees = null;
1235 cyprien 21
	public static String[] champsObligatoires = {"cc_id_collection","cc_ce_type"};
1232 cyprien 22
 
1369 cyprien 23
	public Collection() {
453 jp_milcent 24
	}
1369 cyprien 25
 
1329 cyprien 26
	public Collection(ModelData model)
27
	{
1369 cyprien 28
		Map<String, Object> a = model.getProperties();
29
 
30
		Set<String> cles = a.keySet();
31
		Iterator<String> it = cles.iterator();
32
		while (it.hasNext()) {
33
			String cle = it.next();
34
			if (a.get(cle) != null) {
35
				String cleObjet = cle.replaceFirst("^"+getPrefixe()+"_", "");
36
				this.set(cleObjet, a.get(cle));
37
			}
38
		}
1329 cyprien 39
	}
1369 cyprien 40
 
1232 cyprien 41
	public Collection(JSONObject collection){
775 jpm 42
		initialiserModele(collection);
453 jp_milcent 43
	}
44
 
748 jpm 45
	@Override
1232 cyprien 46
	protected String getPrefixe(){
748 jpm 47
		return PREFIXE;
48
	}
49
 
1173 jpm 50
	protected String[] getChampsObligatoires()	{
51
		return champsObligatoires;
52
	}
53
 
453 jp_milcent 54
	// BOTANIQUE
55
	public CollectionBotanique getBotanique() {
948 jpm 56
		if (botanique == null) {
57
			botanique = new CollectionBotanique();
58
		}
453 jp_milcent 59
		return botanique;
60
	}
61
	public void setBotanique(CollectionBotanique botaniqueAStocker) {
62
		botanique = botaniqueAStocker;
63
	}
64
 
883 jpm 65
	// PERSONNES LIÉES
66
	public CollectionAPersonneListe getPersonnesLiees() {
997 jpm 67
		if (personnesLiees == null) {
68
			personnesLiees = new CollectionAPersonneListe();
69
		}
883 jpm 70
		return personnesLiees;
71
	}
72
	public void setPersonnesLiees(CollectionAPersonneListe relationsCollectionAPersonne) {
73
		personnesLiees = relationsCollectionAPersonne;
74
	}
75
 
76
	// PUBLICATIONS LIÉES
77
	public CollectionAPublicationListe getPublicationsLiees() {
997 jpm 78
		if (publicationsLiees == null) {
79
			publicationsLiees = new CollectionAPublicationListe();
80
		}
883 jpm 81
		return publicationsLiees;
82
	}
83
	public void setPublicationsLiees(CollectionAPublicationListe relationsCollectionAPublication) {
84
		publicationsLiees = relationsCollectionAPublication;
85
	}
86
 
997 jpm 87
	// COMMENTAIRES LIÉS
88
	public CollectionACommentaireListe getCommentairesLiees() {
89
		if (commentairesLiees == null) {
90
			commentairesLiees = new CollectionACommentaireListe();
91
		}
92
		return commentairesLiees;
93
	}
94
	public void setCommentairesLiees(CollectionACommentaireListe relationsCollectionACommentaire) {
95
		commentairesLiees = relationsCollectionACommentaire;
96
	}
97
 
453 jp_milcent 98
	// ID
99
	public String getId() {
100
		return renvoyerValeurCorrecte("id_collection");
101
	}
102
	public void setId(String idCollection) {
103
		this.set("id_collection", idCollection);
104
	}
105
 
867 jpm 106
	// COLLECTION MERE ID
107
	public String getCollectionMereId() {
108
		return renvoyerValeurCorrecte("ce_mere");
109
	}
110
	public void setCollectionMereId(String collectionMereId) {
111
		this.set("ce_mere", collectionMereId);
112
	}
113
 
628 jp_milcent 114
	// COLLECTION MERE NOM
115
	public String getCollectionMereNom() {
1173 jpm 116
		return renvoyerValeurCorrecte("_collection_mere_nom_");
628 jp_milcent 117
	}
118
	public void setCollectionMereNom(String collectionMereNom) {
1173 jpm 119
		this.set("_collection_mere_nom_", collectionMereNom);
628 jp_milcent 120
	}
121
 
453 jp_milcent 122
	// CE STRUCTURE
123
	public String getIdStructure() {
124
		return renvoyerValeurCorrecte("ce_structure");
125
	}
126
	public void setIdStructure(String idStructure) {
127
		this.set("ce_structure", idStructure);
128
	}
129
 
130
	// GUID
131
	public String getGuid() {
132
		return renvoyerValeurCorrecte("guid");
133
	}
134
	public void setGuid(String guid) {
135
		this.set("guid", guid);
136
	}
137
 
477 jp_milcent 138
	// CODE
139
	public String getCode() {
628 jp_milcent 140
		return renvoyerValeurCorrecte("truk_code");
477 jp_milcent 141
	}
142
	public void setCode(String code) {
628 jp_milcent 143
		this.set("truk_code", code);
477 jp_milcent 144
	}
145
 
453 jp_milcent 146
	// NOM
147
	public String getNom() {
148
		return renvoyerValeurCorrecte("nom");
149
	}
150
	public void setNom(String nom) {
151
		this.set("nom", nom);
152
	}
628 jp_milcent 153
 
154
	// NOM ALTERNATIF
155
	public String getNomAlternatif() {
156
		return renvoyerValeurCorrecte("truk_nom_alternatif");
453 jp_milcent 157
	}
628 jp_milcent 158
	public void setNomAlternatif(String nomAlter) {
159
		this.set("truk_nom_alternatif", nomAlter);
453 jp_milcent 160
	}
477 jp_milcent 161
 
162
	// DESCRIPTION
163
	public String getDescription() {
164
		return renvoyerValeurCorrecte("description");
165
	}
166
	public void setDescription(String description) {
167
		this.set("description", description);
168
	}
169
 
628 jp_milcent 170
	// HISTORIQUE
171
	public String getHistorique() {
172
		return renvoyerValeurCorrecte("historique");
173
	}
174
	public void setHistorique(String historique) {
175
		this.set("historique", historique);
176
	}
468 jp_milcent 177
 
628 jp_milcent 178
	// URL
179
	public String getUrls() {
180
		return renvoyerValeurCorrecte("truk_url");
181
	}
182
	public void setUrls(String urls) {
183
		this.set("truk_url", urls);
184
	}
185
 
186
	// TYPE NCD
187
	public String getTypeNcd() {
188
		return renvoyerValeurCorrecte("ce_type");
189
	}
190
	public void setTypeNcd(String typeNcd) {
191
		this.set("ce_type", typeNcd);
192
	}
193
 
194
	// TYPE DEPOT
195
	public String getTypeDepot() {
196
		return renvoyerValeurCorrecte("ce_type_depot");
197
	}
198
	public void setTypeDepot(String typeDepot) {
199
		this.set("ce_type_depot", typeDepot);
200
	}
201
 
869 jpm 202
	// COTE
203
	public String getCote() {
204
		return renvoyerValeurCorrecte("cote");
205
	}
206
	public void setCote(String cote) {
207
		this.set("cote", cote);
208
	}
209
 
210
	// DIMENSSION
211
	public String getDimenssion() {
212
		return renvoyerValeurCorrecte("dimenssion");
213
	}
214
	public void setDimenssion(String dimenssion) {
215
		this.set("dimenssion", dimenssion);
216
	}
217
 
218
	// CONDITION ACCÉS
219
	public String getConditionAcces() {
220
		return renvoyerValeurCorrecte("condition_acces");
221
	}
222
	public void setConditionAcces(String conditionAcces) {
223
		this.set("condition_acces", conditionAcces);
224
	}
225
 
226
	// CONDITION USAGE
227
	public String getConditionUsage() {
228
		return renvoyerValeurCorrecte("condition_usage");
229
	}
230
	public void setConditionUsage(String conditionUsage) {
231
		this.set("condition_usage", conditionUsage);
232
	}
233
 
234
	// COUVERTURE VERNACULAIRE
235
	public String getCouvertureVernaculaire() {
236
		return renvoyerValeurCorrecte("truk_couverture_vernaculaire");
237
	}
238
	public void setCouvertureVernaculaire(String couvertureVernaculaire) {
239
		this.set("truk_couverture_vernaculaire", couvertureVernaculaire);
240
	}
241
 
242
	// COUVERTURE TAXONOMIQUE
243
	public String getCouvertureTaxonomique() {
244
		return renvoyerValeurCorrecte("truk_couverture_taxonomique");
245
	}
246
	public void setCouvertureTaxonomique(String couvertureTaxonomique) {
247
		this.set("truk_couverture_taxonomique", couvertureTaxonomique);
248
	}
249
 
250
	// COUVERTURE REGNE
251
	public String getCouvertureRegne() {
252
		return renvoyerValeurCorrecte("truk_couverture_regne");
253
	}
254
	public void setCouvertureRegne(String couvertureRegne) {
255
		this.set("truk_couverture_regne", couvertureRegne);
256
	}
257
 
258
	// COUVERTURE TEMPORELLE
259
	public String getCouvertureTemporelle() {
260
		return renvoyerValeurCorrecte("truk_couverture_temporelle");
261
	}
262
	public void setCouvertureTemporelle(String couvertureTemporelle) {
263
		this.set("truk_couverture_temporelle", couvertureTemporelle);
264
	}
265
 
266
	// COUVERTURE VIE
267
	public String getCouvertureVie() {
268
		return renvoyerValeurCorrecte("truk_couverture_vie");
269
	}
270
	public void setCouvertureVie(String couvertureVie) {
271
		this.set("truk_couverture_Vie", couvertureVie);
272
	}
273
 
274
	// CONSERVATION STATUT
275
	public String getConservationStatut() {
276
		return renvoyerValeurCorrecte("truk_conservation_statut");
277
	}
278
	public void setConservationStatut(String conservationStatut) {
279
		this.set("truk_conservation_statut", conservationStatut);
280
	}
281
 
282
	// PRESERVATION
283
	public String getPreservation() {
284
		return renvoyerValeurCorrecte("truk_preservation");
285
	}
286
	public void setPreservation(String preservation) {
287
		this.set("truk_preservation", preservation);
288
	}
289
 
290
	// DEVELOPPEMENT
291
	public String getDeveloppement() {
292
		return renvoyerValeurCorrecte("ce_developpement");
293
	}
294
	public void setDeveloppement(String developpement) {
295
		this.set("ce_developpement", developpement);
296
	}
297
 
298
	// PERIODE CONSTITUTION
1925 delphine 299
	public String getPeriodeConstitutionDebut() {
300
		return renvoyerValeurCorrecte("periode_constitution_debut");
869 jpm 301
	}
1925 delphine 302
	public void setPeriodeConstitutionDebut(Integer periodeConstitution) {
303
		if (periodeConstitution.equals(new Integer("")))
304
			this.set("periode_constitution_debut", null);
1210 cyprien 305
		else
1925 delphine 306
			this.set("periode_constitution_debut", periodeConstitution);
869 jpm 307
	}
308
 
1925 delphine 309
	public String getPeriodeConstitutionFin() {
310
		return renvoyerValeurCorrecte("periode_constitution_fin");
311
	}
312
	public void setPeriodeConstitutionFin(Integer periodeConstitution) {
313
		if (periodeConstitution.equals(new Integer("")))
314
			this.set("periode_constitution_fin", null);
315
		else
316
			this.set("periode_constitution_fin", periodeConstitution);
317
	}
318
 
867 jpm 319
	// COUVERTURE LIEU
320
	public String getCouvertureLieu() {
321
		return renvoyerValeurCorrecte("truk_couverture_lieu");
322
	}
323
	public void setCouvertureLieu(String couvertureLieu) {
324
		this.set("truk_couverture_lieu", couvertureLieu);
325
	}
326
 
869 jpm 327
	// COORDONNÉE
328
	public String getCoordonnee() {
329
		return renvoyerValeurCorrecte("truk_coordonnee");
330
	}
331
	public void setCoordonnee(String coordonnee) {
332
		this.set("truk_coordonnee", coordonnee);
333
	}
334
 
867 jpm 335
	// SPECIMEN TYPE
336
	public String getSpecimenType() {
337
		return renvoyerValeurCorrecte("ce_specimen_type");
338
	}
339
	public void setSpecimenType(String specimenType) {
340
		this.set("ce_specimen_type", specimenType);
341
	}
342
 
343
	// SPECIMEN TYPE NOMBRE
344
	public String getSpecimenTypeNbre() {
345
		return renvoyerValeurCorrecte("specimen_type_nbre");
346
	}
347
	public void setSpecimenTypeNbre(String specimenTypeNbre) {
348
		this.set("specimen_type_nbre", specimenTypeNbre);
349
	}
350
 
351
	// SPECIMEN TYPE NOMBRE PRECISION
352
	public String getSpecimenTypeNbrePrecision() {
353
		return renvoyerValeurCorrecte("ce_specimen_type_nbre_precision");
354
	}
355
	public void setSpecimenTypeNbrePrecision(String specimenTypeNbrePrecision) {
356
		this.set("ce_specimen_type_nbre_precision", specimenTypeNbrePrecision);
357
	}
358
 
359
	// SPECIMEN TYPE CLASSEMENT
360
	public String getSpecimenTypeClassement() {
361
		return renvoyerValeurCorrecte("ce_specimen_type_classement");
362
	}
363
	public void setSpecimenTypeClassement(String specimenTypeClassement) {
364
		this.set("ce_specimen_type_classement", specimenTypeClassement);
365
	}
366
 
869 jpm 367
	// EXPEDITION NOM
368
	public String getExpeditionNom() {
369
		return renvoyerValeurCorrecte("expedition_nom");
370
	}
371
	public void setExpeditionNom(String expeditionNom) {
372
		this.set("expedition_nom", expeditionNom);
373
	}
374
 
375
	// DIGITAL MEDIUM
376
	public String getDigitalMedium() {
377
		return renvoyerValeurCorrecte("truk_digital_medium");
378
	}
379
	public void setDigitalMedium(String digitalMedium) {
380
		this.set("truk_digital_medium", digitalMedium);
381
	}
382
 
383
	// DIGITAL FORMAT
384
	public String getDigitalFormat() {
385
		return renvoyerValeurCorrecte("truk_digital_format");
386
	}
387
	public void setDigitalFormat(String digitalFormat) {
388
		this.set("truk_digital_format", digitalFormat);
389
	}
390
 
391
	// PUBLIC
392
	public boolean etrePublic() {
393
		String publicMark = getPublic();
394
		boolean estPublic = true;
395
		if (publicMark.equals("0")) {
396
			estPublic = false;
397
		}
398
		return estPublic;
399
	}
400
	public String getPublic() {
401
		return renvoyerValeurCorrecte("mark_public");
402
	}
403
	public void setBoolPublic(String publicBool) {
404
		this.set("mark_public", publicBool);
405
	}
406
 
468 jp_milcent 407
	// +--------------------------------------------------------------------------------------------------------------+
408
	// STRUCTURE NOM
409
	public String getStructureNom() {
1173 jpm 410
		return renvoyerValeurCorrecte("_structure_nom_");
468 jp_milcent 411
	}
453 jp_milcent 412
 
468 jp_milcent 413
	// STRUCTURE VILLE
414
	public String getStructureVille() {
1173 jpm 415
		return renvoyerValeurCorrecte("_structure_ville_");
883 jpm 416
	}
417
}