/** {@inheritDoc } */
 @Override
 public JdomRepresentation copy() {
   JdomRepresentation result = new JdomRepresentation(this.toString());
   assert result.getDocument() != this.document : "In memory documents should be differents";
   return result;
 }