private static void appendModule(final Element problem, final RefModule refModule) {
   if (refModule != null) {
     Element moduleElement = new Element("module");
     moduleElement.addContent(refModule.getName());
     problem.addContent(moduleElement);
   }
 }