00001 <?php
00002
00020
00021
00022
00023 class LayoutAssignment extends DataObject {
00024
00028 function LayoutAssignment() {
00029 parent::DataObject();
00030 }
00031
00032
00033
00034
00035
00040 function getLayoutId() {
00041 return $this->getData('layoutId');
00042 }
00043
00048 function setLayoutId($layoutId) {
00049 return $this->setData('layoutId', $layoutId);
00050 }
00051
00056 function getArticleId() {
00057 return $this->getData('articleId');
00058 }
00059
00064 function setArticleId($articleId) {
00065 return $this->setData('articleId', $articleId);
00066 }
00067
00072 function getEditorId() {
00073 return $this->getData('editorId');
00074 }
00075
00080 function setEditorId($editorId) {
00081 return $this->setData('editorId', $editorId);
00082 }
00083
00088 function getEditorFullName() {
00089 return $this->getData('editorFullName');
00090 }
00091
00096 function setEditorFullName($editorFullName) {
00097 return $this->setData('editorFullName', $editorFullName);
00098 }
00099
00104 function getEditorEmail() {
00105 return $this->getData('editorEmail');
00106 }
00107
00112 function setEditorEmail($editorEmail) {
00113 return $this->setData('editorEmail', $editorEmail);
00114 }
00115
00120 function getDateNotified() {
00121 return $this->getData('dateNotified');
00122 }
00123
00128 function setDateNotified($dateNotified) {
00129 return $this->setData('dateNotified', $dateNotified);
00130 }
00131
00136 function getDateUnderway() {
00137 return $this->getData('dateUnderway');
00138 }
00139
00144 function setDateUnderway($dateUnderway) {
00145 return $this->setData('dateUnderway', $dateUnderway);
00146 }
00147
00152 function getDateCompleted() {
00153 return $this->getData('dateCompleted');
00154 }
00155
00160 function setDateCompleted($dateCompleted) {
00161 return $this->setData('dateCompleted', $dateCompleted);
00162 }
00163
00168 function getDateAcknowledged() {
00169 return $this->getData('dateAcknowledged');
00170 }
00171
00176 function setDateAcknowledged($dateAcknowledged) {
00177 return $this->setData('dateAcknowledged', $dateAcknowledged);
00178 }
00179
00184 function getLayoutFileId() {
00185 return $this->getData('layoutFileId');
00186 }
00187
00192 function setLayoutFileId($layoutFileId) {
00193 return $this->setData('layoutFileId', $layoutFileId);
00194 }
00195
00200 function getLayoutFile() {
00201 return $this->getData('layoutFile');
00202 }
00203
00208 function setLayoutFile($layoutFile) {
00209 return $this->setData('layoutFile', $layoutFile);
00210 }
00211
00212 }
00213
00214 ?>