]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/structures/extended/decks/cargo/class_TruckDeck.php
Several fixes for older tests
[shipsimu.git] / application / ship-simu / main / structures / extended / decks / cargo / class_TruckDeck.php
index ecccce258a3b0252433a0f8569b7ce7977faf12d..ccbe596810d1d741d1ee6896442a180df4b7e91f 100644 (file)
@@ -1,9 +1,31 @@
 <?php
-// Decks fuer LKWs
-class TruckDeck extends BaseDeck implements ItemIsTradeable, ConstructableShipPart {
+/**
+ * A truck and bus decks. Also other vehicle may be put in here if they don't
+ * match into the car deck.
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @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 <http://www.gnu.org/licenses/>.
+ */
+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
@@ -55,16 +77,6 @@ class TruckDeck extends BaseDeck implements ItemIsTradeable, ConstructableShipPa
                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;