getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.
\n", __CLASS__, __LINE__ )); } // Set description $this->setPartDescr("Schiffsstrukturen"); // Clean up a little $this->removeNumberFormaters(); } /** * Calls the private constructor * * @param $class The class' name * @return void */ public function constructor ($class) { $this->__construct($class); } // Setter for price public final function setPrice ($price) { $this->price = (float) $price; } // Getter for price public final function getPrice () { return $this->price; } // Remove price public function removePrice () { unset($this->price); } } // [EOF] ?>