Subversion Repositories eFlore/Applications.coel

Rev

Rev 453 | Rev 477 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 453 Rev 468
Line 1... Line 1...
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
Line 2... Line 2...
2
 
2
 
3
import java.util.Iterator;
3
import java.util.Iterator;
Line 4... Line -...
4
import java.util.Set;
-
 
5
 
4
import java.util.Set;
Line 6... Line 5...
6
import com.extjs.gxt.ui.client.data.BaseModelData;
5
 
Line -... Line 6...
-
 
6
import com.google.gwt.json.client.JSONObject;
-
 
7
 
7
import com.google.gwt.json.client.JSONObject;
8
public class Collection extends aDonnee {
8
 
9
	
9
public class Collection extends aDonnee {
-
 
Line 10... Line 10...
10
	
10
	private static final long serialVersionUID = 3295310312337145716L;
11
	public static final String PREFIXE = "cc";
11
	
Line 12... Line 12...
12
	private CollectionBotanique botanique = null;
12
	public static final String PREFIXE = "cc";
Line 89... Line 89...
89
		return renvoyerValeurCorrecte("truk_identifiant_alternatif");
89
		return renvoyerValeurCorrecte("truk_identifiant_alternatif");
90
	}
90
	}
91
	public void setIdAlternatif(String idAlter) {
91
	public void setIdAlternatif(String idAlter) {
92
		this.set("truk_identifiant_alternatif", idAlter);
92
		this.set("truk_identifiant_alternatif", idAlter);
93
	}
93
	}
-
 
94
 
-
 
95
	// +--------------------------------------------------------------------------------------------------------------+
-
 
96
	// STRUCTURE NOM
-
 
97
	public String getStructureNom() {
-
 
98
		return renvoyerValeurCorrecte("structure_nom");
-
 
99
	}
-
 
100
	
-
 
101
	// STRUCTURE VILLE
-
 
102
	public String getStructureVille() {
-
 
103
		return renvoyerValeurCorrecte("structure_ville");
-
 
104
	}
Line 94... Line 105...
94
	
105