_reviewerId = NULL; $this->_name = NULL; $this->_nickname = NULL; $this->_age = NULL; $this->_mainInterest = NULL; } // ResultSet constructor function setFromRow($row){ $this->_reviewerId = $row[0]; $this->_name = $row[1]; $this->_nickname = $row[2]; $this->_age = $row[3]; $this->_mainInterest = $row[4]; } // member variable getters and setters function getReviewerId() { return $this->_reviewerId; } function setReviewerId($reviewerId){ $this->_reviewerId = $reviewerId; } function getName() { return $this->_name; } function setName($name){ $this->_name = $name; } function getNickname() { return $this->_nickname; } function setNickname($nickname){ $this->_nickname = $nickname; } function getAge() { return $this->_age; } function setAge($age){ $this->_age = $age; } function getMainInterest() { return $this->_mainInterest; } function setMainInterest($mainInterest){ $this->_mainInterest = $mainInterest; } } // // ================================================================== // // WARNING : Do not edit this file by hand. This file was created // by SoProMach. Edit the definition files and re-generate to make // modifications. Making modifications to this file directly will // result in loss of work when the file is re-generated. // // ================================================================== ?>