00001 <?php
00002
00022 class ReviewForm extends DataObject {
00023
00027 function ReviewForm() {
00028 parent::DataObject();
00029 }
00030
00035 function getReviewFormTitle() {
00036 return $this->getLocalizedData('title');
00037 }
00038
00043 function getReviewFormDescription() {
00044 return $this->getLocalizedData('description');
00045 }
00046
00047
00048
00049
00050
00055 function getReviewFormId() {
00056 return $this->getData('reviewFormId');
00057 }
00058
00063 function setReviewFormId($reviewFormId) {
00064 return $this->setData('reviewFormId', $reviewFormId);
00065 }
00066
00071 function getCompleteCount() {
00072 return $this->getData('completeCount');
00073 }
00074
00079 function setCompleteCount($completeCount) {
00080 return $this->setData('completeCount', $completeCount);
00081 }
00082
00087 function getIncompleteCount() {
00088 return $this->getData('incompleteCount');
00089 }
00090
00095 function setIncompleteCount($incompleteCount) {
00096 return $this->setData('incompleteCount', $incompleteCount);
00097 }
00098
00103 function getJournalId() {
00104 return $this->getData('journalId');
00105 }
00106
00111 function setJournalId($journalId) {
00112 return $this->setData('journalId', $journalId);
00113 }
00114
00119 function getSequence() {
00120 return $this->getData('sequence');
00121 }
00122
00127 function setSequence($sequence) {
00128 return $this->setData('sequence', $sequence);
00129 }
00130
00135 function getActive() {
00136 return $this->getData('active');
00137 }
00138
00143 function setActive($active) {
00144 return $this->setData('active', $active);
00145 }
00146
00152 function getTitle($locale) {
00153 return $this->getData('title', $locale);
00154 }
00155
00161 function setTitle($title, $locale) {
00162 return $this->setData('title', $title, $locale);
00163 }
00164
00170 function getDescription($locale) {
00171 return $this->getData('description', $locale);
00172 }
00173
00179 function setDescription($description, $locale) {
00180 return $this->setData('description', $description, $locale);
00181 }
00182 }
00183
00184 ?>