Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1513 Rev 1693
Line 46... Line 46...
46
	protected String[] getChampsObligatoires()	{
46
	protected String[] getChampsObligatoires()	{
47
		return champsObligatoires;
47
		return champsObligatoires;
48
	}
48
	}
Line 49... Line 49...
49
	
49
	
50
	// FORMATION
50
	// FORMATION
-
 
51
	public Integer getFormation() {
-
 
52
		if (renvoyerValeurCorrecte("mark_formation").equals("")) {
-
 
53
			return null;
51
	public String getFormation() {
54
		}
52
		return renvoyerValeurCorrecte("mark_formation");
55
		return Integer.parseInt(renvoyerValeurCorrecte("mark_formation"));
53
	}
56
	}
54
	public void setFormation(String f) {
57
	public void setFormation(String f) {
55
		this.set("mark_formation", f);
58
		this.set("mark_formation", f != null ? Integer.parseInt(f) : null);
Line 56... Line 59...
56
	}
59
	}
57
	
60
	
58
	// FORMATION INFO
61
	// FORMATION INFO
Line 62... Line 65...
62
	public void setFormationInfo(String f) {
65
	public void setFormationInfo(String f) {
63
		this.set("formation", f);
66
		this.set("formation", f);
64
	}
67
	}
Line 65... Line 68...
65
	
68
	
66
	// FORMATION INTÉRÊT
69
	// FORMATION INTÉRÊT
-
 
70
	public Integer getFormationInteret() {
-
 
71
		if (renvoyerValeurCorrecte("mark_formation_interet").equals("")) {
-
 
72
			return null;
67
	public String getFormationInteret() {
73
		}
68
		return renvoyerValeurCorrecte("mark_formation_interet");
74
		return Integer.parseInt(renvoyerValeurCorrecte("mark_formation_interet"));
69
	}
75
	}
70
	public void setFormationInteret(String f) {
76
	public void setFormationInteret(String f) {
71
		this.set("mark_formation_interet", f);
77
		this.set("mark_formation_interet", f != null ? Integer.parseInt(f) : null);
Line 72... Line 78...
72
	}
78
	}
73
	
79
	
74
	// STOCKAGE LOCAL
80
	// STOCKAGE LOCAL
Line 231... Line 237...
231
		this.set("truk_acquisition_traitement_insecte", ati);
237
		this.set("truk_acquisition_traitement_insecte", ati);
232
	}
238
	}
233
	public void setAcquisitionTraitementInsecte(String type, Object valeur) {
239
	public void setAcquisitionTraitementInsecte(String type, Object valeur) {
234
		ajouterChaineDenormaliseAvecType("truk_acquisition_traitement_insecte", type, valeur);
240
		ajouterChaineDenormaliseAvecType("truk_acquisition_traitement_insecte", type, valeur);
235
	}
241
	}
236
}
-
 
237
242
}
-
 
243