/**
  * Creates individual Entry objects of the appropriate type and
  * stores them in the $_entry array based upon DOM data.
  *
  * @param DOMNode $child The DOMNode to process
  */
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     switch ($absoluteNodeName) {
         case $this->lookupNamespace('yt') . ':' . 'position':
             $position = new Extension\Position();
             $position->transferFromDOM($child);
             $this->_position = $position;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }