/**
   * Checks if name of a project already exist. It also sends an error message if the project name
   * already exit.
   *
   * @param projectName name of the project
   * @return <code>true</code> if project name already exist else <code>false</code>
   */
  protected boolean doesNameAlreadyExist(String projectName) {

    if (existProjectName(projectName)) {
      this.setErrorMessage(translationService.translate("%wizard.error.double"));
      return true;
    }
    this.setErrorMessage(null);
    return false;
  }
 /** {@inheritDoc} */
 @Override
 public String getDescriptionValue() {
   return translationService.translate("%new.wizard.whitemsg.project");
 }
 /** {@inheritDoc} */
 @Override
 public String getTitleValue() {
   return translationService.translate("%popupmenu.label.new.test.project");
 }