3 namespace Org\Mxchange\CoreFramework\Manager;
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Generic\FrameworkInterface;
7 use Org\Mxchange\CoreFramework\Template\CompileableTemplate;
10 * An interface for managing applications. This can be a lot. E.g.:
12 * - Un-/locking applications
13 * - Creating selectors for the selector-mode
17 * @author Roland Haeder <webmaster@shipsimu.org>
19 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
20 * @license GNU GPL 3.0 or any newer version
21 * @link http://www.shipsimu.org
23 * This program is free software: you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation, either version 3 of the License, or
26 * (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
33 * You should have received a copy of the GNU General Public License
34 * along with this program. If not, see <http://www.gnu.org/licenses/>.
36 interface ManageableApplication extends FrameworkInterface {
38 * Getter for the version number
40 * @return $appVersion The application's version number
42 function getAppVersion ();
45 * Setter for the version number
47 * @param $appVersion The application's version number
50 function setAppVersion (string $appVersion);
53 * Getter for human-readable name
55 * @return $appName The application's human-readable name
57 function getAppName ();
60 * Setter for human-readable name
62 * @param $appName The application's human-readable name
65 function setAppName (string $appName);
68 * Getter for short uni*-like name
70 * @return $shortName The application's short uni*-like name
72 function getAppShortName ();
75 * Setter for short uni*-like name
77 * @param $shortName The application's short uni*-like name
80 function setAppShortName (string $shortName);
83 * 1) Setups application data
87 function setupApplicationData ();
90 * 2) Does initial stuff before starting the application
94 function initApplication ();
97 * 3) Launches the application
101 function launchApplication ();
104 * Handle the indexed array of fatal messages and puts them out in an
107 * @param $messageList An array of fatal messages
110 function handleFatalMessages (array $messageList);
113 * Builds the master template's name
115 * @return $masterTemplateName Name of the master template
117 function buildMasterTemplateName ();
120 * Assigns extra application-depending data
122 * @param $templateInstance An instance of a CompileableTemplate
124 * @todo Nothing to add?
126 function assignExtraTemplateData (CompileableTemplate $templateInstance);