private String getDocumentation() {
   String documentation;
   if (attribut) {
     final Element refParent = affParent.getNoeudRef();
     documentation = cfg.documentationAttribut(refParent, refNoeud);
   } else documentation = cfg.documentation(refNoeud);
   if (documentation != null)
     documentation = "<html><body>" + documentation.replaceAll("\n", "<br>") + "</body></html>";
   return (documentation);
 }