}
@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;
}
/**
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;
}
/**