Subversion Repositories eFlore/Applications.coel

Compare Revisions

Regard whitespace Rev 1692 → Rev 1693

/trunk/src/org/tela_botanica/client/vues/DetailVue.java
191,6 → 191,13
return txtARetourner;
}
protected String formaterOuiNon(Integer intAFormater) {
if(intAFormater == null) return "";
if(intAFormater.intValue() == 0) return i18nC.non();
if(intAFormater.intValue() == 1) return i18nC.oui();
return "";
}
protected String formaterSautDeLigne(String chaineAFormater) {
String txtARetourner = chaineAFormater.replaceAll("\n", sautLigneTpl);
return txtARetourner;