getDebugInstance()->output(sprintf("[%s:%d:] Kontruktor erreicht.
\n", __CLASS__, __LINE__ )); } // Beschreibung $this->setPartDescr("Schiffsteil"); // Etwas aufraeumen $this->removeNumberFormaters(); } // Konstruktor aufrufen public function constructor ($class) { $this->__construct($class); } // Setter for price public function setPrice ($price) { $this->price = (float) $price; } // Getter for price public function getPrice () { return $this->price; } // Remove price public function removePrice () { unset($this->price); } } // [EOF] ?>