Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 468 Rev 477
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
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 com.google.gwt.json.client.JSONObject;
6
import com.google.gwt.json.client.JSONObject;
7
 
7
 
8
public class Collection extends aDonnee {
8
public class Collection extends aDonnee {
9
	
9
	
10
	private static final long serialVersionUID = 3295310312337145716L;
10
	private static final long serialVersionUID = 3295310312337145716L;
11
	
11
	
12
	public static final String PREFIXE = "cc";
12
	public static final String PREFIXE = "cc";
13
	private CollectionBotanique botanique = null;
13
	private CollectionBotanique botanique = null;
14
	
14
	
15
	public Collection() {
15
	public Collection() {
16
	}
16
	}
17
	
17
	
18
	public Collection(JSONObject collection) {
18
	public Collection(JSONObject collection) {
19
		// l'objet JSON est une table de hachage
19
		// l'objet JSON est une table de hachage
20
		Set<String> im = collection.keySet();
20
		Set<String> im = collection.keySet();
21
 
21
 
22
		// Parcourt pour chaque clé
22
		// Parcourt pour chaque clé
23
		for (Iterator<String> it = im.iterator(); it.hasNext();) {
23
		for (Iterator<String> it = im.iterator(); it.hasNext();) {
24
			// Si elle est associée à une valeur, nous l'ajoutons
24
			// Si elle est associée à une valeur, nous l'ajoutons
25
			String cle = it.next();
25
			String cle = it.next();
26
			if (cle.startsWith(PREFIXE+"_")) {
26
			if (cle.startsWith(PREFIXE+"_")) {
27
				// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
27
				// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
28
				String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
28
				String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
29
				// Sinon, nous ajoutons la clé avec une valeur vide
29
				// Sinon, nous ajoutons la clé avec une valeur vide
30
				String valeur = "";
30
				String valeur = "";
31
				if (collection.get(cle).isString() != null) {
31
				if (collection.get(cle).isString() != null) {
32
					valeur = collection.get(cle).isString().stringValue();
32
					valeur = collection.get(cle).isString().stringValue();
33
				}
33
				}
34
				this.set(cleObjet, valeur);
34
				this.set(cleObjet, valeur);
35
			}
35
			}
36
		}
36
		}
37
	}
37
	}
38
 
38
 
39
	// BOTANIQUE
39
	// BOTANIQUE
40
	public CollectionBotanique getBotanique() {
40
	public CollectionBotanique getBotanique() {
41
		return botanique;
41
		return botanique;
42
	}
42
	}
43
	public void setBotanique(CollectionBotanique botaniqueAStocker) {
43
	public void setBotanique(CollectionBotanique botaniqueAStocker) {
44
		botanique = botaniqueAStocker;
44
		botanique = botaniqueAStocker;
45
	}
45
	}
46
	
46
	
47
	// ID
47
	// ID
48
	public String getId() {
48
	public String getId() {
49
		return renvoyerValeurCorrecte("id_collection");
49
		return renvoyerValeurCorrecte("id_collection");
50
	}
50
	}
51
	public void setId(String idCollection) {
51
	public void setId(String idCollection) {
52
		this.set("id_collection", idCollection);
52
		this.set("id_collection", idCollection);
53
	}
53
	}
54
	
54
	
55
	// CE PROJET
55
	// CE PROJET
56
	public String getIdProjet() {
56
	public String getIdProjet() {
57
		return renvoyerValeurCorrecte("ce_projet");
57
		return renvoyerValeurCorrecte("ce_projet");
58
	}
58
	}
59
	public void setIdProjet(String idProjet) {
59
	public void setIdProjet(String idProjet) {
60
		this.set("ce_projet", idProjet);
60
		this.set("ce_projet", idProjet);
61
	}
61
	}
62
	
62
	
63
	// CE STRUCTURE
63
	// CE STRUCTURE
64
	public String getIdStructure() {
64
	public String getIdStructure() {
65
		return renvoyerValeurCorrecte("ce_structure");
65
		return renvoyerValeurCorrecte("ce_structure");
66
	}
66
	}
67
	public void setIdStructure(String idStructure) {
67
	public void setIdStructure(String idStructure) {
68
		this.set("ce_structure", idStructure);
68
		this.set("ce_structure", idStructure);
69
	}
69
	}
70
 
70
 
71
	// GUID
71
	// GUID
72
	public String getGuid() {
72
	public String getGuid() {
73
		return renvoyerValeurCorrecte("guid");
73
		return renvoyerValeurCorrecte("guid");
74
	}
74
	}
75
	public void setGuid(String guid) {
75
	public void setGuid(String guid) {
76
		this.set("guid", guid);
76
		this.set("guid", guid);
77
	}
77
	}
-
 
78
	
-
 
79
	// CODE
-
 
80
	public String getCode() {
-
 
81
		return renvoyerValeurCorrecte("code");
-
 
82
	}
-
 
83
	public void setCode(String code) {
-
 
84
		this.set("code", code);
-
 
85
	}
78
	
86
	
79
	// NOM
87
	// NOM
80
	public String getNom() {
88
	public String getNom() {
81
		return renvoyerValeurCorrecte("nom");
89
		return renvoyerValeurCorrecte("nom");
82
	}
90
	}
83
	public void setNom(String nom) {
91
	public void setNom(String nom) {
84
		this.set("nom", nom);
92
		this.set("nom", nom);
85
	}
93
	}
86
 
94
 
87
	// TRUK IDENTIFIANT ALTERNATIF
95
	// TRUK IDENTIFIANT ALTERNATIF
88
	public String getIdAlternatif() {
96
	public String getIdAlternatif() {
89
		return renvoyerValeurCorrecte("truk_identifiant_alternatif");
97
		return renvoyerValeurCorrecte("truk_identifiant_alternatif");
90
	}
98
	}
91
	public void setIdAlternatif(String idAlter) {
99
	public void setIdAlternatif(String idAlter) {
92
		this.set("truk_identifiant_alternatif", idAlter);
100
		this.set("truk_identifiant_alternatif", idAlter);
93
	}
101
	}
-
 
102
	
-
 
103
	// DESCRIPTION
-
 
104
	public String getDescription() {
-
 
105
		return renvoyerValeurCorrecte("description");
-
 
106
	}
-
 
107
	public void setDescription(String description) {
-
 
108
		this.set("description", description);
-
 
109
	}
-
 
110
	
-
 
111
	// DESCRIPTION SPECIALISTE
-
 
112
	public String getDescriptionSpecialiste() {
-
 
113
		return renvoyerValeurCorrecte("description_specialiste");
-
 
114
	}
-
 
115
	public void setDescriptionSpecialiste(String descriptionSepcialiste) {
-
 
116
		this.set("description_specialiste", descriptionSepcialiste);
-
 
117
	}
94
 
118
 
95
	// +--------------------------------------------------------------------------------------------------------------+
119
	// +--------------------------------------------------------------------------------------------------------------+
96
	// STRUCTURE NOM
120
	// STRUCTURE NOM
97
	public String getStructureNom() {
121
	public String getStructureNom() {
98
		return renvoyerValeurCorrecte("structure_nom");
122
		return renvoyerValeurCorrecte("structure_nom");
99
	}
123
	}
100
	
124
	
101
	// STRUCTURE VILLE
125
	// STRUCTURE VILLE
102
	public String getStructureVille() {
126
	public String getStructureVille() {
103
		return renvoyerValeurCorrecte("structure_ville");
127
		return renvoyerValeurCorrecte("structure_ville");
104
	}
128
	}
105
	
129
	
106
}
130
}