/**
  * Returns a Zend_Db_Table_Row from a known position into the Iterator
  *
  * @param int $position the position of the row expected
  * @param bool $seek wether or not seek the iterator to that position after
  * @return Zend_Db_Table_Row
  * @throws Zend_Db_Table_Rowset_Exception
  */
 public function getJunctionRow($position, $seek = false)
 {
     return $this->_junctionRowset->getRow($position, $seek);
 }