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; } /** * Returns the count of items in this range to display. * @return int */ function getCount() { return $this->count; } } ?>