00001 <?php 00002 00021 class Currency extends DataObject { 00022 00023 function Currency() { 00024 parent::DataObject(); 00025 } 00026 00027 // 00028 // Get/set methods 00029 // 00030 00035 function getName() { 00036 return $this->getData('name'); 00037 } 00038 00043 function setName($name) { 00044 return $this->setData('name', $name); 00045 } 00046 00051 function getCodeAlpha() { 00052 return $this->getData('codeAlpha'); 00053 } 00054 00059 function setCodeAlpha($codeAlpha) { 00060 return $this->setData('codeAlpha', $codeAlpha); 00061 } 00062 00067 function getCodeNumeric() { 00068 return $this->getData('codeNumeric'); 00069 } 00070 00075 function setCodeNumeric($codeNumeric) { 00076 return $this->setData('codeNumeric', $codeNumeric); 00077 } 00078 } 00079 00080 ?>
1.5.6