00001 <?php
00002
00016
00017
00018 class EditAssignment extends DataObject {
00019
00023 function EditAssignment() {
00024 parent::DataObject();
00025 }
00026
00027
00028
00029
00030
00035 function getEditId() {
00036 return $this->getData('editId');
00037 }
00038
00043 function setEditId($editId) {
00044 return $this->setData('editId', $editId);
00045 }
00046
00051 function getPaperId() {
00052 return $this->getData('paperId');
00053 }
00054
00059 function setPaperId($paperId) {
00060 return $this->setData('paperId', $paperId);
00061 }
00062
00067 function getDirectorId() {
00068 return $this->getData('directorId');
00069 }
00070
00075 function setDirectorId($directorId) {
00076 return $this->setData('directorId', $directorId);
00077 }
00078
00083 function getIsDirector() {
00084 return $this->getData('isDirector');
00085 }
00086
00091 function setIsDirector($isDirector) {
00092 return $this->setData('isDirector', $isDirector);
00093 }
00094
00099 function getDateNotified() {
00100 return $this->getData('dateNotified');
00101 }
00102
00107 function setDateNotified($dateNotified) {
00108 return $this->setData('dateNotified', $dateNotified);
00109 }
00110
00115 function getDateUnderway() {
00116 return $this->getData('dateUnderway');
00117 }
00118
00123 function setDateUnderway($dateUnderway) {
00124 return $this->setData('dateUnderway', $dateUnderway);
00125 }
00126
00131 function getDirectorFullName() {
00132 return $this->getData('directorFullName');
00133 }
00134
00139 function setDirectorFullName($directorFullName) {
00140 return $this->setData('directorFullName', $directorFullName);
00141 }
00142
00147 function getDirectorFirstName() {
00148 return $this->getData('directorFirstName');
00149 }
00150
00155 function setDirectorFirstName($directorFirstName) {
00156 return $this->setData('directorFirstName', $directorFirstName);
00157 }
00158
00163 function getDirectorLastName() {
00164 return $this->getData('directorLastName');
00165 }
00166
00171 function setDirectorLastName($directorLastName) {
00172 return $this->setData('directorLastName', $directorLastName);
00173 }
00174
00179 function getDirectorInitials() {
00180 if ($this->getData('directorInitials')) {
00181 return $this->getData('directorInitials');
00182 } else {
00183 return substr($this->getDirectorFirstName(), 0, 1) . substr($this->getDirectorLastName(), 0, 1);
00184 }
00185 }
00186
00191 function setDirectorInitials($directorInitials) {
00192 return $this->setData('directorInitials', $directorInitials);
00193 }
00194
00199 function getDirectorEmail() {
00200 return $this->getData('directorEmail');
00201 }
00202
00207 function setDirectorEmail($directorEmail) {
00208 return $this->setData('directorEmail', $directorEmail);
00209 }
00210 }
00211
00212 ?>