/**
  *
  * @return \Project_OneStepCreation_OneStepCreationValidator
  */
 private function validateShortDescription()
 {
     if ($this->creation_request->getShortDescription() == null) {
         $GLOBALS['Response']->addFeedback('error', $GLOBALS['Language']->getText('register_projectname', 'info_missed'));
         $this->setIsNotValid();
     }
     return $this;
 }
 /**
  *
  * @return string
  */
 public function getShortDescription()
 {
     return $this->creation_request->getShortDescription();
 }