00001 <?php 00024 class BaseFactory extends BaseFrameworkSystem { 00028 private $realFactoryInstance = null; 00029 00036 protected function __construct ($className) { 00037 // Call parent constructor 00038 parent::__construct($className); 00039 00040 // Clean up a little 00041 $this->removeNumberFormaters(); 00042 $this->removeSystemArray(); 00043 } 00044 00051 public final function setRealFactoryInstance (BaseFrameworkSystem $realFactoryInstance) { 00052 $this->realFactoryInstance = $realFactoryInstance; 00053 } 00054 00060 protected final function getRealFactoryInstance () { 00061 return $this->realFactoryInstance; 00062 } 00063 } 00064 00065 // [EOF] 00066 ?>
1.5.6