X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=application%2Fship-simu%2Fmain%2Fpersonell%2Fclass_SimulatorPersonell.php;h=2aabd8b328a1d1972c7a89b9ed2f5145e62f003c;hb=55b327a3f5f2fe1d244532e07be7444e94b2a768;hp=b46bb03dd01642a2e97ebd3d56b46a63796cd157;hpb=edc57038a9262e3a04572e0d9036a9f745b10fb7;p=shipsimu.git diff --git a/application/ship-simu/main/personell/class_SimulatorPersonell.php b/application/ship-simu/main/personell/class_SimulatorPersonell.php index b46bb03..2aabd8b 100644 --- a/application/ship-simu/main/personell/class_SimulatorPersonell.php +++ b/application/ship-simu/main/personell/class_SimulatorPersonell.php @@ -1,6 +1,26 @@ + * @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 SimulatorPersonell extends BasePersonell { // Personell list private $personellList = null; @@ -12,23 +32,19 @@ class SimulatorPersonell extends BasePersonell { private $cacheCond = null; /** - * Private constructor + * Protected constructor * * @return void */ - private function __construct () { + protected function __construct () { // Call parent constructor - parent::constructor(__CLASS__); - - if (((defined('DEBUG_PERSONELL')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) $this->getDebugInstance()->output(sprintf("[%s:] Konstruktor erreicht.
\n", - $this->__toString() - )); + parent::__construct(__CLASS__); // Set description - $this->setPartDescr("Simulationspersonal"); + $this->setObjectDescription("Simulationspersonal"); // Create unique ID - $this->createUniqueID(); + $this->generateUniqueId(); // Clean-up a little $this->removeSystemArray(); @@ -55,19 +71,16 @@ class SimulatorPersonell extends BasePersonell { * * @param $amountPersonell Number of personell we shall * generate - * @return $personellInstance An instance of this object with a + * @return $personellInstance An instance of this object with a * list of personells */ - public static function createSimulatorPersonell ($amountPersonell) { + public final static function createSimulatorPersonell ($amountPersonell) { // Make sure only integer can pass $amountPersonell = (int) $amountPersonell; // Get a new instance $personellInstance = new SimulatorPersonell(); - // Generate unique ID number - $personellInstance->createUniqueID(); - // Debug message if ((defined('DEBUG_PERSONELL')) || (defined('DEBUG_ALL'))) $personellInstance->getDebugInstance()->output(sprintf("[%s:%d] Es werden %d Personal bereitgestellt.
\n", __CLASS__, @@ -80,7 +93,7 @@ class SimulatorPersonell extends BasePersonell { // Create requested amount of personell for ($idx = 0; $idx < $amountPersonell; $idx++) { - $personellInstance->addPersonell(); + $personellInstance->addRandomPersonell(); } // Debug message @@ -110,7 +123,7 @@ class SimulatorPersonell extends BasePersonell { * list from an existing database backend * * @param $idNumber The ID number (only right part) of the list - * @return $personellInstance An instance of + * @return $personellInstance An instance of * @throws InvalidIDFormatException If the given id number * $idNumber is invalid * @throws NullPointerException If a null pointer (instance) @@ -185,7 +198,7 @@ class SimulatorPersonell extends BasePersonell { __CLASS__, __LINE__ )); - $this->personellList = new FrameworkArrayObject(); + $this->personellList = new FrameworkArrayObject("FakedPersonellList"); } else { throw new PersonellListAlreadyCreatedException($this, self::EXCEPTION_DIMENSION_ARRAY_INVALID); } @@ -201,7 +214,7 @@ class SimulatorPersonell extends BasePersonell { } // Add new personell object to our list - public function addPersonell () { + public function addRandomPersonell () { // Gender list... $genders = array('M', 'F'); @@ -257,7 +270,7 @@ class SimulatorPersonell extends BasePersonell { $this->setCacheCond($serialized); // Create cached list - $this->setAllCacheList(new FrameworkArrayObject()); + $this->setAllCacheList(new FrameworkArrayObject("FakedCacheList")); // Search all unemployed personells for ($idx = $this->personellList->getIterator(); $idx->valid(); $idx->next()) { @@ -286,7 +299,7 @@ class SimulatorPersonell extends BasePersonell { * * @return $count Amount of unemployed personell */ - public function getAllUnemployed () { + public final function getAllUnemployed () { if ((defined('DEBUG_PERSONELL')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Es werden alle erwerbslosen Personen gesucht.
\n", __CLASS__, __LINE__ @@ -321,7 +334,7 @@ class SimulatorPersonell extends BasePersonell { * @param $cacheList The new cache list to set or null for initialization/reset * @return void */ - private function setAllCacheList (FrameworkArrayObject $cacheList = null) { + private final function setAllCacheList (FrameworkArrayObject $cacheList = null) { $this->cacheList = $cacheList; } @@ -331,7 +344,7 @@ class SimulatorPersonell extends BasePersonell { * @param $cacheCond The new cache conditions to set * @return void */ - private function setCacheCond ($cacheCond) { + private final function setCacheCond ($cacheCond) { $this->cacheCond = (string) $cacheCond; } @@ -379,7 +392,7 @@ class SimulatorPersonell extends BasePersonell { * @return void */ public function saveObjectToDatabase () { - // Get the database + // Get the database $dbInstance = $this->getDatabaseInstance(); // Prepare the limitation object. We just need the personellList array object. @@ -397,7 +410,7 @@ class SimulatorPersonell extends BasePersonell { * * @return $personellList The list of all personells */ - public function getPersonellList () { + public final function getPersonellList () { return $this->personellList; }