Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1513 Rev 1693
Line 188... Line 188...
188
		} else if (chaineAFormater.equals("1")) {
188
		} else if (chaineAFormater.equals("1")) {
189
			txtARetourner = i18nC.oui();
189
			txtARetourner = i18nC.oui();
190
		}
190
		}
191
		return txtARetourner;
191
		return txtARetourner;
192
	}
192
	}
-
 
193
 
-
 
194
	protected String formaterOuiNon(Integer intAFormater) {
-
 
195
		if(intAFormater == null) return "";
-
 
196
		if(intAFormater.intValue() == 0) return i18nC.non();
-
 
197
		if(intAFormater.intValue() == 1) return i18nC.oui();
-
 
198
		return "";
-
 
199
	}
Line 193... Line 200...
193
	
200
	
194
	protected String formaterSautDeLigne(String chaineAFormater) {
201
	protected String formaterSautDeLigne(String chaineAFormater) {
195
		String txtARetourner = chaineAFormater.replaceAll("\n", sautLigneTpl);
202
		String txtARetourner = chaineAFormater.replaceAll("\n", sautLigneTpl);
196
		return txtARetourner;
203
		return txtARetourner;
Line 305... Line 312...
305
		String chaineAutres = formaterTableauDeTxt(autres, true);
312
		String chaineAutres = formaterTableauDeTxt(autres, true);
306
		String chaineARetourner = chaineTermes+formaterAutre(chaineAutres);
313
		String chaineARetourner = chaineTermes+formaterAutre(chaineAutres);
Line 307... Line 314...
307
		
314
		
308
		return chaineARetourner;
315
		return chaineARetourner;
309
	}
-
 
310
}
316
	}
-
 
317
}