Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 179 Rev 188
Line 39... Line 39...
39
			}
39
			}
40
			this.set(cleObjet, valeur);
40
			this.set(cleObjet, valeur);
41
		}
41
		}
42
	}
42
	}
Line -... Line 43...
-
 
43
	
-
 
44
	public String getFormationMark() {
-
 
45
		return renvoyerValeurCorrecte("mark_formation");
43
	
46
	}
44
	public void setFormationMark(String mf) {
47
	public void setFormationMark(String mf) {
45
		this.set("mark_formation", mf);
48
		this.set("mark_formation", mf);
Line -... Line 49...
-
 
49
	}
-
 
50
	
-
 
51
	public String getFormation() {
46
	}
52
		return renvoyerValeurCorrecte("formation");
47
	
53
	}
48
	public void setFormation(String f) {
54
	public void setFormation(String f) {
Line -... Line 55...
-
 
55
		this.set("formation", f);
-
 
56
	}
-
 
57
	
49
		this.set("formation", f);
58
	public String getFormationInteret() {
50
	}
59
		return renvoyerValeurCorrecte("mark_formation_interet");
51
	
60
	}
52
	public void setFormationInteret(String f) {
61
	public void setFormationInteret(String f) {
-
 
62
		this.set("mark_formation_interet", f);
-
 
63
	}
-
 
64
 
53
		this.set("mark_formation_interet", f);
65
	public String getStockageLocal() {
54
	}
66
		return renvoyerValeurCorrecte("truk_stockage_local");
55
	
67
	}
-
 
68
	public void setStockageLocal(String sl) {
-
 
69
		this.set("truk_stockage_local", sl);
-
 
70
	}
-
 
71
	public void setStockageLocal(String type, String valeur) {
-
 
72
		String chaineExistante = renvoyerValeurCorrecte("truk_stockage_local");
-
 
73
		if (chaineExistante.equals("")) {
-
 
74
			this.set("truk_stockage_local", type+"##"+valeur);
-
 
75
		} else {
Line 56... Line 76...
56
	public void setStockageLocal(String sl) {
76
			this.set("truk_stockage_local", chaineExistante+";"+type+"##"+valeur);
57
		this.set("truk_stockage_local", sl);
77
		}
58
	}
78
	}