/**
  * Get the row for the given offset
  * Required by the ArrayAccess implementation
  *
  * @param string $offset
  * @return Zend_Db_Table_Row_Abstract
  */
 public function offsetGet($offset)
 {
     return $this->_matchRowset->offsetGet($offset);
 }