00001 <?php
00002
00020
00021
00022
00023 class CopyAssignment extends DataObject {
00024
00028 function CopyAssignment() {
00029 parent::DataObject();
00030 }
00031
00032
00033
00034
00035
00040 function getCopyedId() {
00041 return $this->getData('copyedId');
00042 }
00043
00048 function setCopyedId($copyedId) {
00049 return $this->setData('copyedId', $copyedId);
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 getCopyeditorId() {
00073 return $this->getData('copyeditorId');
00074 }
00075
00080 function setCopyeditorId($copyeditorId) {
00081 return $this->setData('copyeditorId', $copyeditorId);
00082 }
00083
00088 function getCopyeditorFullName() {
00089 return $this->getData('copyeditorFullName');
00090 }
00091
00096 function setCopyeditorFullName($copyeditorFullName) {
00097 return $this->setData('copyeditorFullName', $copyeditorFullName);
00098 }
00099
00104 function getDateNotified() {
00105 return $this->getData('dateNotified');
00106 }
00107
00112 function setDateNotified($dateNotified) {
00113 return $this->setData('dateNotified', $dateNotified);
00114 }
00115
00120 function getDateUnderway() {
00121 return $this->getData('dateUnderway');
00122 }
00123
00128 function setDateUnderway($dateUnderway) {
00129 return $this->setData('dateUnderway', $dateUnderway);
00130 }
00131
00136 function getDateCompleted() {
00137 return $this->getData('dateCompleted');
00138 }
00139
00144 function setDateCompleted($dateCompleted)
00145 {
00146 return $this->setData('dateCompleted', $dateCompleted);
00147 }
00148
00153 function getDateAcknowledged() {
00154 return $this->getData('dateAcknowledged');
00155 }
00156
00161 function setDateAcknowledged($dateAcknowledged)
00162 {
00163 return $this->setData('dateAcknowledged', $dateAcknowledged);
00164 }
00165
00170 function getDateAuthorNotified() {
00171 return $this->getData('dateAuthorNotified');
00172 }
00173
00178 function setDateAuthorNotified($dateAuthorNotified)
00179 {
00180 return $this->setData('dateAuthorNotified', $dateAuthorNotified);
00181 }
00182
00187 function getDateAuthorUnderway() {
00188 return $this->getData('dateAuthorUnderway');
00189 }
00190
00195 function setDateAuthorUnderway($dateAuthorUnderway) {
00196 return $this->setData('dateAuthorUnderway', $dateAuthorUnderway);
00197 }
00198
00203 function getDateAuthorCompleted() {
00204 return $this->getData('dateAuthorCompleted');
00205 }
00206
00211 function setDateAuthorCompleted($dateAuthorCompleted)
00212 {
00213 return $this->setData('dateAuthorCompleted', $dateAuthorCompleted);
00214 }
00215
00220 function getDateAuthorAcknowledged() {
00221 return $this->getData('dateAuthorAcknowledged');
00222 }
00223
00228 function setDateAuthorAcknowledged($dateAuthorAcknowledged)
00229 {
00230 return $this->setData('dateAuthorAcknowledged', $dateAuthorAcknowledged);
00231 }
00232
00237 function getDateFinalNotified() {
00238 return $this->getData('dateFinalNotified');
00239 }
00240
00245 function setDateFinalNotified($dateFinalNotified)
00246 {
00247 return $this->setData('dateFinalNotified', $dateFinalNotified);
00248 }
00249
00254 function getDateFinalUnderway() {
00255 return $this->getData('dateFinalUnderway');
00256 }
00257
00262 function setDateFinalUnderway($dateFinalUnderway) {
00263 return $this->setData('dateFinalUnderway', $dateFinalUnderway);
00264 }
00265
00270 function getDateFinalCompleted() {
00271 return $this->getData('dateFinalCompleted');
00272 }
00273
00278 function setDateFinalCompleted($dateFinalCompleted)
00279 {
00280 return $this->setData('dateFinalCompleted', $dateFinalCompleted);
00281 }
00282
00287 function getDateFinalAcknowledged() {
00288 return $this->getData('dateFinalAcknowledged');
00289 }
00290
00295 function setDateFinalAcknowledged($dateFinalAcknowledged)
00296 {
00297 return $this->setData('dateFinalAcknowledged', $dateFinalAcknowledged);
00298 }
00299
00304 function getCopyedFileId() {
00305 return $this->getData('copyedFileId');
00306 }
00307
00312 function setCopyedFileId($copyedFileId) {
00313 return $this->setData('copyedFileId', $copyedFileId);
00314 }
00315
00320 function getLayoutFile() {
00321 return $this->getData('layoutFile');
00322 }
00323
00328 function setLayoutFile($layoutFile) {
00329 return $this->setData('layoutFile', $layoutFile);
00330 }
00331
00336 function getInitialRevision() {
00337 return $this->getData('initialRevision');
00338 }
00339
00344 function setInitialRevision($initialRevision) {
00345 return $this->setData('initialRevision', $initialRevision);
00346 }
00347
00352 function getEditorAuthorRevision() {
00353 return $this->getData('editorAuthorRevision');
00354 }
00355
00360 function setEditorAuthorRevision($editorAuthorRevision) {
00361 return $this->setData('editorAuthorRevision', $editorAuthorRevision);
00362 }
00363
00368 function getFinalRevision() {
00369 return $this->getData('finalRevision');
00370 }
00371
00376 function setFinalRevision($finalRevision) {
00377 return $this->setData('finalRevision', $finalRevision);
00378 }
00379
00380
00381
00382
00383
00389 function &getInitialCopyeditFile() {
00390 $returner =& $this->getData('initialCopyeditFile');
00391 return $returner;
00392 }
00393
00399 function setInitialCopyeditFile($initialCopyeditFile) {
00400 return $this->setData('initialCopyeditFile', $initialCopyeditFile);
00401 }
00402
00408 function &getEditorAuthorCopyeditFile() {
00409 $returner =& $this->getData('editorAuthorCopyeditFile');
00410 return $returner;
00411 }
00412
00418 function setEditorAuthorCopyeditFile($editorAuthorCopyeditFile) {
00419 return $this->setData('editorAuthorCopyeditFile', $editorAuthorCopyeditFile);
00420 }
00421
00427 function &getFinalCopyeditFile() {
00428 $returner =& $this->getData('finalCopyeditFile');
00429 return $returner;
00430 }
00431
00437 function setFinalCopyeditFile($finalCopyeditFile) {
00438 return $this->setData('finalCopyeditFile', $finalCopyeditFile);
00439 }
00440
00441 }
00442
00443 ?>