3 // Die Anlegebruecke-Klasse
4 class Terminal extends BaseConstruction {
6 private $harborInstance = null;
9 private function __construct () {
10 if (((defined('DEBUG_MODE')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
11 $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
17 // Eltern-Konstruktor aufrufen
18 parent::constructor(__CLASS__);
20 // Beschreibung setzen
21 $this->setPartDescr("Anlegebrücke");
24 $this->createUniqueID();
30 public function saveObjectToDatabase () {
31 $this->getDebugInstance()->output(sprintf("[%s:] Stub <strong>%s</strong> erreicht.",
38 * Limits this object with an ObjectLimits instance
40 public function limitObject (ObjectLimits $limitInstance) {
41 ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!");