]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/parts/maschineroom/class_MaschineRoom.php
createUniqueID -> generateUniqueId renamed, dataset criteria added, registration...
[shipsimu.git] / application / ship-simu / main / parts / maschineroom / class_MaschineRoom.php
index 2367ab71ceaee9a15e0efd712613ad3b475784c8..4a45e33402c5405d125a190fa232df7893d6b30d 100644 (file)
  * 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/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 class MaschineRoom extends BaseShipPart {
        // Constructor
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
-
-               // Debug message
-               if (((defined('DEBUG_MODE')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
-                       $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
-                               __CLASS__,
-                               __LINE__
-                       ));
-               }
+               parent::__construct(__CLASS__);
 
                // Set description
-               $this->setPartDescr("Maschinenraum");
+               $this->setObjectDescription("Maschinenraum");
 
                // Generate unique ID number
-               $this->createUniqueID();
+               $this->generateUniqueId();
 
                // Clean up a little
                $this->removeSystemArray();
        }
 
        // Maschinenraum erstellen
-       public static function createMaschineRoom () {
+       public final static function createMaschineRoom () {
                // Get new instance
                $roomInstance = new MaschineRoom();
 
@@ -64,23 +56,6 @@ class MaschineRoom extends BaseShipPart {
                // Instanz zurueckgeben
                return $roomInstance;
        }
-
-       /**
-        * Stub!
-        */
-       public function saveObjectToDatabase () {
-               $this->getDebugInstance()->output(sprintf("[%s:] Stub <strong>%s</strong> erreicht.",
-                       $this->__toString(),
-                       __FUNCTION__
-               ));
-       }
-
-       /**
-        * Limits this object with an ObjectLimits instance
-        */
-       public function limitObject (ObjectLimits $limitInstance) {
-               ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!");
-       }
 }
 
 // [EOF]