Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 306 Rev 748
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.google.gwt.core.client.GWT;
5
 
Line -... Line 6...
-
 
6
import com.google.gwt.json.client.JSONObject;
-
 
7
 
7
import com.google.gwt.json.client.JSONObject;
8
public class StructureValorisation extends aDonnee {
Line 8... Line -...
8
 
-
 
9
public class StructureValorisation extends aDonnee {
-
 
10
	
-
 
11
	public static final String PREFIXE = "csv";
-
 
12
 
9
	
13
	/**
-
 
14
	 * Constructeur vide
10
	private static final long serialVersionUID = 8906713360999774621L;
Line 15... Line -...
15
	 * 
-
 
16
	 */
-
 
17
	public StructureValorisation() {
-
 
18
 
-
 
19
	}
-
 
20
	
11
 
21
	/**
12
	public static final String PREFIXE = "csv";
22
	 * Constructeur avec un objet JSON
13
 
Line 23... Line 14...
23
	 * 
14
	public StructureValorisation() {
Line 42... Line 33...
42
				this.set(cleObjet, valeur);
33
				this.set(cleObjet, valeur);
43
			}
34
			}
44
		}
35
		}
45
	}
36
	}
Line -... Line 37...
-
 
37
	
-
 
38
	@Override
-
 
39
	protected String getPrefixe() {
-
 
40
		return PREFIXE;
-
 
41
	}
46
	
42
	
47
	// ACTION
43
	// ACTION
48
	public String getAction() {
44
	public String getAction() {
49
		return renvoyerValeurCorrecte("mark_action");
45
		return renvoyerValeurCorrecte("mark_action");
50
	}
46
	}
Line 159... Line 155...
159
	}
155
	}
160
	public void setVisiteAvecMotifInfo(String vam) {
156
	public void setVisiteAvecMotifInfo(String vam) {
161
		this.set("visite_avec_motif", vam);
157
		this.set("visite_avec_motif", vam);
162
	}
158
	}
Line 163... Line -...
163
	
-
 
164
	
159