]> git.mxchange.org Git - jcore.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 22 Jan 2023 00:29:08 +0000 (01:29 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 22 Jan 2023 00:29:08 +0000 (01:29 +0100)
- sorted members

src/org/mxchange/jcore/BaseFrameworkSystem.java

index 78957734eaa183464c5ee03870f8b7dd3a2623e0..cdba2bae49b190b89b7b4927419c43e9702ff0b6 100644 (file)
@@ -131,31 +131,32 @@ public abstract class BaseFrameworkSystem implements FrameworkInterface {
        }
 
        @Override
-       public Client getClient () {
-               return this.client;
+       public Facade getFacade () {
+               return this.facade;
+       }
+
+       @Override
+       public String getMessageStringFromKey (final String key) {
+               // Return message
+               return this.getBundle().getString(key);
        }
 
        /**
-        * Client instance
+        * Getter for bundle instance
         * <p>
-        * @param client the client to set
+        * @return Resource bundle
         */
-       protected void setClient (final Client client) {
-               this.client = client;
+       protected ResourceBundle getBundle () {
+               return BaseFrameworkSystem.bundle;
        }
 
        /**
-        * Application instance
+        * Setter for bundle instance
         * <p>
-        * @param application the application to set
+        * @param bundle the bundle to set
         */
-       protected void setApplication (final Application application) {
-               this.application = application;
-       }
-
-       @Override
-       public Facade getFacade () {
-               return this.facade;
+       protected static void setBundle (final ResourceBundle bundle) {
+               BaseFrameworkSystem.bundle = bundle;
        }
 
        /**
@@ -167,28 +168,27 @@ public abstract class BaseFrameworkSystem implements FrameworkInterface {
                this.facade = facade;
        }
 
-       @Override
-       public String getMessageStringFromKey (final String key) {
-               // Return message
-               return this.getBundle().getString(key);
-       }
-
        /**
-        * Getter for bundle instance
+        * Application instance
         * <p>
-        * @return Resource bundle
+        * @param application the application to set
         */
-       protected ResourceBundle getBundle () {
-               return BaseFrameworkSystem.bundle;
+       protected void setApplication (final Application application) {
+               this.application = application;
+       }
+
+       @Override
+       public Client getClient () {
+               return this.client;
        }
 
        /**
-        * Setter for bundle instance
+        * Client instance
         * <p>
-        * @param bundle the bundle to set
+        * @param client the client to set
         */
-       protected static void setBundle (final ResourceBundle bundle) {
-               BaseFrameworkSystem.bundle = bundle;
+       protected void setClient (final Client client) {
+               this.client = client;
        }
 
        /**