/**
  * Overridden to make sure that the user_error that gets triggered if this is already is set
  * ... doesn't. DataObject tries setting this at times that it shouldn't :/
  * 
  * @param string $name 
  */
 public function setName($name)
 {
     if (!$this->name) {
         parent::setName($name);
     }
 }