X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=application%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fdecks%2Fcargo%2Fclass_TruckDeck.php;h=4f29d603472fa80cc80026849c9628be9600e390;hb=d5be335b3a658deb8340ac50d8b7d7e638c59062;hp=ecccce258a3b0252433a0f8569b7ce7977faf12d;hpb=ff66822b5fb6a92f5dc8af55290ecb89ec7f1aaf;p=shipsimu.git diff --git a/application/ship-simu/main/structures/extended/decks/cargo/class_TruckDeck.php b/application/ship-simu/main/structures/extended/decks/cargo/class_TruckDeck.php index ecccce2..4f29d60 100644 --- a/application/ship-simu/main/structures/extended/decks/cargo/class_TruckDeck.php +++ b/application/ship-simu/main/structures/extended/decks/cargo/class_TruckDeck.php @@ -1,9 +1,31 @@ + * @version 0.0.0 + * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @license GNU GPL 3.0 or any newer version + * @link http://www.ship-simu.org + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +class TruckDeck extends BaseDeck implements TradeableItem, ConstructableShipPart { // Konstruktor private function __construct () { - // Eltern-Konstruktor aufrufen + // Call parent constructor parent::constructor(__CLASS__); // Debug message @@ -12,10 +34,10 @@ class TruckDeck extends BaseDeck implements ItemIsTradeable, ConstructableShipPa __LINE__ )); - // Beschreibung setzen + // Set description $this->setPartDescr("LKW-Deck"); - // Unique-ID erzeugen + // Generate unique ID number $this->createUniqueID(); // Clean up a little @@ -23,8 +45,8 @@ class TruckDeck extends BaseDeck implements ItemIsTradeable, ConstructableShipPa } // LKW-Deck erstellen - public static function createTruckDeck ($numDecks, $dim) { - // Instanz holen + public final static function createTruckDeck ($numDecks, $dim) { + // Get new instance $truckInstance = new TruckDeck(); // Debug message @@ -46,25 +68,6 @@ class TruckDeck extends BaseDeck implements ItemIsTradeable, ConstructableShipPa return $truckInstance; } - // Deckanzahl entfernen - public function removeNumDecks() { - if ((defined('DEBUG_DECK')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl Decks wurde gelöscht.
\n", - __CLASS__, - __LINE__ - )); - parent::removeNumDecks(); - } - - // Setter-Methode fuer Anzahl Decks - public function setNumDecks ($numDecks) { - parent::setNumDecks($numDecks); - } - - // Getter-Methode fuer Anzahl Decks - public function getNumDecks() { - return parent::getNumDecks(); - } - // Overwritten method for tradeable items public function isTradeable () { return true;