Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 244 → Rev 245

/trunk/src/org/tela_botanica/client/modeles/aDonnee.java
101,6 → 101,21
}
}
/**
* Permet de récupérer pour l'affichage une chaine dénormalisée unique (champ de type "ce_truk").
*
* @param champ le nom du champ dénormalisé
*/
protected String getChaineDenormaliseUnique(String champ) {
String sortie = renvoyerValeurCorrecte(champ);
if (!sortie.equals("")) {
sortie = sortie.replaceFirst("^AUTRE##", "");
}
return sortie;
}
protected String getInfoDenormaliseParType(String chaineExistante, String type) {
String sortie = "";
if (!chaineExistante.equals("")) {