]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/application/class_ManageableApplication.php
Moved analyzeFile() to BaseFile where a much better place is (and duplicate
[core.git] / inc / classes / interfaces / application / class_ManageableApplication.php
index ec0e2b651cf62c89c01d3fbe75d9720d3844a433..977ce7458ca634850f8993141140ea817b7f760c 100644 (file)
@@ -7,11 +7,11 @@
  * - Usage statistics
  * - And many more...
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.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
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface ManageableApplication extends FrameworkInterface {
-       /**
-        * Getter for application's version number
-        *
-        * @return      $appVersion     The application's version number
-        */
-       function getAppVersion ();
-       /**
-        * Setter for application's version number
-        *
-        * @param               $appVersion     The application's version number
-        * @return      void
-        */
-       function setAppVersion ($appVersion);
-
-       /**
-        * Getter for application's human-readable name
-        *
-        * @return      $appName        The application's name readable for humans
-        */
-       function getAppName ();
-
-       /**
-        * Setter for application's human-readable name
-        *
-        * @param               $appName        The application's name readable for humans
-        * @return      void
-        */
-       function setAppName ($appName);
-
-       /**
-        * Getter for application's short uni*-like name
-        *
-        * @return      $shortName      The application's name readable for humans
-        */
-       function getAppShortName ();
-
-       /**
-        * Setter for application's short uni*-like name
-        *
-        * @param               $shortName      The application's name readable for humans
-        * @return      void
-        */
-       function setAppShortName ($shortName);
-
-       /**
-        * Getter for master template name
-        *
-        * @return      $masterTemplate         Name of the master template
-        */
-       function getMasterTemplate ();
-
        /**
         * Launches the application
         *
@@ -93,6 +42,13 @@ interface ManageableApplication extends FrameworkInterface {
         * @return      void
         */
        function handleFatalMessages (array $messageList);
+
+       /**
+        * Builds the master template's name
+        *
+        * @return      $masterTemplateName             Name of the master template
+        */
+       function buildMasterTemplateName();
 }
 
 // [EOF]