count = $count; $this->page = $page; } /** * Checks to see if the DBResultRange is valid. * @return boolean */ function isValid() { return (($this->count>0) && ($this->page>=0)); } /** * 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() { $this->count = $count; } } ?>