00001 <?php 00002 00017 import('classes.monograph.Author'); 00018 00019 class ChapterAuthor extends Author { 00020 00024 function ChapterAuthor() { 00025 parent::Author(); 00026 } 00027 00028 // 00029 // Get/set methods 00030 // 00031 00036 function getChapterId() { 00037 return $this->getData('chapterId'); 00038 } 00039 00044 function setChapterId($chapterId) { 00045 return $this->setData('chapterId', $chapterId); 00046 } 00047 } 00048 00049 ?>
1.7.1