]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/interfaces/application/class_ManageableApplication.php
Comment header fixed
[shipsimu.git] / inc / classes / interfaces / application / class_ManageableApplication.php
index f342a0a7ca16fd5404e24e14af17e42ad7330e72..e775a18ec9b48e8ce29602e749bf90b5cca998bf 100644 (file)
@@ -7,11 +7,11 @@
  * - Usage statistics
  * - And many more...
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
- * @version            0.3.0
+ * @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.mxchange.org
+ * @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
@@ -24,7 +24,7 @@
  * 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/>.
  */
 interface ManageableApplication extends FrameworkInterface {
        /**
@@ -71,12 +71,28 @@ interface ManageableApplication extends FrameworkInterface {
         */
        function setAppShortName ($shortName);
 
+       /**
+        * Getter for master template name
+        *
+        * @return      $masterTemplate         Name of the master template
+        */
+       function getMasterTemplate ();
+
        /**
         * Launches the application
         *
         * @return      void
         */
        function entryPoint ();
+
+       /**
+        * Handle the indexed array of fatal messages and puts them out in an
+        * acceptable fasion
+        *
+        * @param       $messageList    An array of fatal messages
+        * @return      void
+        */
+       function handleFatalMessages (array $messageList);
 }
 
 // [EOF]