_authorId = NULL; $this->_name = NULL; $this->_penName = NULL; } // ResultSet constructor function setFromRow($row){ $this->_authorId = $row[0]; $this->_name = $row[1]; $this->_penName = $row[2]; } // member variable getters and setters function getAuthorId() { return $this->_authorId; } function setAuthorId($authorId){ $this->_authorId = $authorId; } function getName() { return $this->_name; } function setName($name){ $this->_name = $name; } function getPenName() { return $this->_penName; } function setPenName($penName){ $this->_penName = $penName; } } // // ================================================================== // // 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. // // ================================================================== ?>