Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 242 Rev 245
Line 99... Line 99...
99
		if (valeur instanceof String) {
99
		if (valeur instanceof String) {
100
			this.set(champ, type+"##"+valeur);
100
			this.set(champ, type+"##"+valeur);
101
		}
101
		}
102
	}
102
	}
Line -... Line 103...
-
 
103
	
-
 
104
	/**
-
 
105
	 * Permet de récupérer pour l'affichage une chaine dénormalisée unique (champ de type "ce_truk").
-
 
106
	 * 
-
 
107
	 * @param champ le nom du champ dénormalisé
-
 
108
	 */
-
 
109
	protected String getChaineDenormaliseUnique(String champ) {
-
 
110
		String sortie = renvoyerValeurCorrecte(champ);
-
 
111
		
-
 
112
		if (!sortie.equals("")) {
-
 
113
			sortie = sortie.replaceFirst("^AUTRE##", "");
-
 
114
		}
-
 
115
		
-
 
116
		return sortie;
-
 
117
	}
103
	
118
	
104
	protected String getInfoDenormaliseParType(String chaineExistante, String type) {
119
	protected String getInfoDenormaliseParType(String chaineExistante, String type) {
105
		String sortie = "";
120
		String sortie = "";
106
		if (!chaineExistante.equals("")) {
121
		if (!chaineExistante.equals("")) {
107
			String[] valeurs = chaineExistante.split(";;");
122
			String[] valeurs = chaineExistante.split(";;");