Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1230 Rev 1232
Line 15... Line 15...
15
	public static final String PREFIXE = "cc";
15
	public static final String PREFIXE = "cc";
16
	private CollectionBotanique botanique = null;
16
	private CollectionBotanique botanique = null;
17
	private CollectionAPersonneListe personnesLiees = null;
17
	private CollectionAPersonneListe personnesLiees = null;
18
	private CollectionAPublicationListe publicationsLiees = null;
18
	private CollectionAPublicationListe publicationsLiees = null;
19
	private CollectionACommentaireListe commentairesLiees = null;
19
	private CollectionACommentaireListe commentairesLiees = null;
-
 
20
	
20
	public static String[] champsObligatoires = {"cc_id_collection","cc_ce_type"};
21
	public static String[] champsObligatoires = {"cc_id_collection", "cc_ce_type"};
-
 
22
	
-
 
23
	public Collection(){
Line 21... Line -...
21
		
-
 
22
	public Collection() {
24
		
23
	}
25
	}
24
	
26
 
25
	public Collection(JSONObject collection) {
27
	public Collection(JSONObject collection){
26
		initialiserModele(collection);
28
		initialiserModele(collection);
Line 27... Line 29...
27
	}
29
	}
28
 
30
 
29
	@Override
31
	@Override
30
	protected String getPrefixe() {
32
	protected String getPrefixe(){
Line 31... Line 33...
31
		return PREFIXE;
33
		return PREFIXE;
32
	}
34
	}