/**
  * Compute default name.
  *
  * @param element New element
  * @return Name for the new element, he name will looks like 'ElementType'+total of existing
  *     elements of the same type.
  */
 public String computeDefaultName(final EObject element) {
   return LabelServices.INSTANCE.computeDefaultName(element);
 }