/**
  * Checks whether the wizard may be activated
  *
  * @return boolean
  */
 public function mayActivate()
 {
     return $this->StatusController->mayAnnounce() && !$this->StatusController->isFinished();
 }
 /**
  * The returned value indicates whether the settings and mapping are done.
  *
  * @return boolean
  */
 public function isComplete()
 {
     return $this->StatusController->isFinished();
 }