X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fclass_;h=f87bf80e28ef67a760c14926fa863183b81151ee;hp=af4096f64df8b08521927573a48ac0c0f6ba584e;hb=2b7c3e43b2fe0f3c5ae0455d13fa7743b638049f;hpb=2fd5f8ecd793f9ec3004cf53629cc7b2c52522cc diff --git a/application/ship-simu/main/class_ b/application/ship-simu/main/class_ index af4096f..f87bf80 100644 --- a/application/ship-simu/main/class_ +++ b/application/ship-simu/main/class_ @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -21,9 +21,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class extends BaseFrameworkSystem { +class ??? extends BaseFrameworkSystem { /** - * Private constructor + * Protected constructor * * @return void */ @@ -31,16 +31,23 @@ class extends BaseFrameworkSystem { // Call parent constructor parent::__construct(__CLASS__); - // Set part description - $this->setObjectDescription(""); - - // Create unique ID number - $this->createUniqueID(); - // Clean up a little $this->removeNumberFormaters(); $this->removeSystemArray(); } + + /** + * Creates an instance of this money bank class + * + * @return $???Instance An instance of this class + */ + public final static function create??? () { + // Get a new instance + $???Instance = new ???(); + + // Return the prepared instance + return $???Instance; + } } // [EOF]