00001 <?php 00002 00016 // $Id: ArticleNote.inc.php,v 1.10 2008/07/01 01:16:09 asmecher Exp $ 00017 00018 00019 import('article.ArticleFile'); 00020 00021 class ArticleNote extends ArticleFile { 00022 00026 function ArticleNote() { 00027 parent::DataObject(); 00028 } 00029 00034 function getNoteId() { 00035 return $this->getData('noteId'); 00036 } 00037 00042 function setNoteId($noteId) { 00043 return $this->setData('noteId',$noteId); 00044 } 00045 00050 function getArticleId() { 00051 return $this->getData('articleId'); 00052 } 00053 00058 function setArticleId($articleId) { 00059 return $this->setData('articleId',$articleId); 00060 } 00061 00066 function getUserId() { 00067 return $this->getData('userId'); 00068 } 00069 00074 function setUserId($userId) { 00075 return $this->setData('userId',$userId); 00076 } 00077 00082 function getDateCreated() { 00083 return $this->getData('dateCreated'); 00084 } 00085 00090 function setDateCreated($dateCreated) { 00091 return $this->setData('dateCreated',$dateCreated); 00092 } 00093 00098 function getDateModified() { 00099 return $this->getData('dateModified'); 00100 } 00101 00106 function setDateModified($dateModified) { 00107 return $this->setData('dateModified',$dateModified); 00108 } 00109 00114 function getTitle() { 00115 return $this->getData('title'); 00116 } 00117 00122 function setTitle($title) { 00123 return $this->setData('title',$title); 00124 } 00125 00130 function getNote() { 00131 return $this->getData('note'); 00132 } 00133 00138 function setNote($note) { 00139 return $this->setData('note',$note); 00140 } 00141 00146 function getFileId() { 00147 return $this->getData('fileId'); 00148 } 00149 00154 function setFileId($fileId) { 00155 return $this->setData('fileId',$fileId); 00156 } 00157 00158 } 00159 00160 ?>
1.5.6