/**
  *
  * @param Uni_Data_XDOMDocument $xDomDoc 
  * @return void
  */
 private function parse(Uni_Data_XDOMDocument $xDomDoc)
 {
     $xPath = new DOMXPath($xDomDoc);
     $res = $xPath->query('/' . self::ROOT . '/' . self::CONTAINER);
     if ($res->length > 0) {
         if ($tpl = $res->item(0)->getAttribute('tpl')) {
             $this->container = Fox::getView('core/container', $res->item(0)->getAttribute('key'));
             $this->container->setTemplate($tpl);
         }
     }
     /*         * *********************Loading Sections ************************ */
     $this->loadAll($xDomDoc->documentElement);
 }