/**
  * Sets the warning cache to TRUE and propagates the information
  * upwards the Result-Object Tree
  *
  * @return void
  */
 protected function setWarningsExist()
 {
     $this->warningsExist = TRUE;
     if ($this->parent !== NULL) {
         $this->parent->setWarningsExist();
     }
 }