/**
  * Create the object from the entry feed.
  *
  * @param array $feed   Each feed of entry feeds.
  *
  * @return ColrowObject
  */
 public static function _createObjectFromFeed($feed)
 {
     $object = new ColrowObject($feed['row_id']);
     $object->_setAll($feed['data']);
     return $object;
 }