/** {@inheritDoc} */
 public function refresh()
 {
     try {
         $property = $this->dm->getNodeForDocument($this->document)->getProperty($this->property);
         $this->referencedNodes = $property->getString();
     } catch (InvalidArgumentException $e) {
         $this->referencedNodes = array();
     }
     parent::refresh();
 }