Subversion Repositories eFlore/Applications.coel

Rev

Rev 683 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 683 Rev 748
Line 4... Line 4...
4
import java.util.Set;
4
import java.util.Set;
Line 5... Line 5...
5
 
5
 
Line 6... Line 6...
6
import com.google.gwt.json.client.JSONObject;
6
import com.google.gwt.json.client.JSONObject;
-
 
7
 
-
 
8
public class CollectionBotanique extends aDonnee {
-
 
9
 
7
 
10
	private static final long serialVersionUID = -6659148189825855729L;
Line 8... Line 11...
8
public class CollectionBotanique extends aDonnee {
11
	
9
	public static final String PREFIXE = "ccb";
12
	public static final String PREFIXE = "ccb";
Line 30... Line 33...
30
				this.set(cleObjet, valeur);
33
				this.set(cleObjet, valeur);
31
			}
34
			}
32
		}
35
		}
33
	}
36
	}
Line -... Line 37...
-
 
37
	
-
 
38
	@Override
-
 
39
	protected String getPrefixe() {
-
 
40
		return PREFIXE;
-
 
41
	}
34
	
42
	
35
	// ID
43
	// ID
36
	public String getId() {
44
	public String getId() {
37
		return renvoyerValeurCorrecte("id_collection");
45
		return renvoyerValeurCorrecte("id_collection");
38
	}
46
	}
Line 53... Line 61...
53
		return renvoyerValeurCorrecte("ce_truk_type");
61
		return renvoyerValeurCorrecte("ce_truk_type");
54
	}
62
	}
55
	public void setType(String type) {
63
	public void setType(String type) {
56
		this.set("ce_truk_type", type);
64
		this.set("ce_truk_type", type);
57
	}
65
	}
-
 
66
	
58
}
67
}
59
68