Rev 64 | Rev 119 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.client.modeles;
import java.util.Iterator;
import java.util.Set;
import com.google.gwt.json.client.JSONObject;
public class Structure extends aDonnee {
/**
* Constructeur vide
*
*/
public Structure() {
}
/**
* Constructeur avec un objet JSON
*
* @param image
*/
public Structure(JSONObject institution) {
// l'objet JSON est une table de hachage
Set<String> im = institution.keySet();
// Parcourt pour chaque clé
for (Iterator<String> it = im.iterator(); it.hasNext();) {
// Si elle est associée à une valeur, nous l'ajoutons
String cle = it.next();
// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
String cleObjet = cle.replaceFirst("^cs_", "");
if (institution.get(cle).isString() != null) {
String valeur = institution.get(cle).isString().stringValue();
this.set(cleObjet, valeur);
} else {
// Sinon, nous ajoutons la clé avec une valeur vide
String valeur = " ";
this.set(cleObjet, valeur);
}
}
}
public String getId() {
return (String) renvoyerValeurCorrecte("id_structure");
}
public String getNom() {
return (String) renvoyerValeurCorrecte("nom");
}
public String getDescription() {
return (String) renvoyerValeurCorrecte("description");
}
public String getAdresse01() {
return (String) renvoyerValeurCorrecte("adresse_01");
}
public String getCodePostal() {
return (String) renvoyerValeurCorrecte("code_postal");
}
public String getVille() {
return (String) renvoyerValeurCorrecte("ville");
}
public String getRegion() {
return (String) renvoyerValeurCorrecte("region");
}
public String getPays() {
return (String) renvoyerValeurCorrecte("pays");
}
public String getTelephone() {
return (String) renvoyerValeurCorrecte("telephone");
}
public String getFax() {
return (String) renvoyerValeurCorrecte("fax");
}
public String getCourriel() {
return (String) renvoyerValeurCorrecte("courriel");
}
public String getConditionAcces() {
return (String) renvoyerValeurCorrecte("condition_acces");
}
}