count = $count; $this->page = $page; $this->offset = $offset; } /** * Checks to see if the DBResultRange is valid. * @return boolean */ function isValid() { return (($this->count > 0) && ($this->page >= 0)) || ($this->count > 0 && !is_null($this->offset)); } /** * Returns the count of pages to skip. * @return int */ function getPage() { return $this->page; } /** * Set the count of pages to skip. * @param $page int */ function setPage($page) { $this->page = $page; } /** * Returns the count of items in this range to display. * @return int */ function getCount() { return $this->count; } /** * Set the count of items in this range to display. * @param $count int */ function setCount($count) { $this->count = $count; } /** * Returns the offset of items in this range to display. * @return int */ function getOffset() { return $this->offset; } /** * Set the offset of items in this range to display. * @param $offset int */ function setOffset($offset) { $this->offset = $offset; } } ?>