From: Roland Haeder Date: Mon, 27 Jul 2015 12:04:02 +0000 (+0200) Subject: Sorted members X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=460e9e3389b2a94b23cb6e3b5e82fce659793174;p=jaddressbook-share-lib.git Sorted members Signed-off-by:Roland Häder --- diff --git a/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java b/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java index 431aeb4..9580cd1 100644 --- a/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java +++ b/Addressbook/src/org/mxchange/addressbook/BaseFrameworkSystem.java @@ -131,6 +131,15 @@ public class BaseFrameworkSystem implements FrameworkInterface { this.application = application; } + /** + * Getter for bundle instance + * + * @return Resource bundle + */ + protected final ResourceBundle getBundle () { + return this.bundle; + } + /** * Getter for logger * @@ -157,13 +166,4 @@ public class BaseFrameworkSystem implements FrameworkInterface { protected final void setTableName (final String tableName) { this.tableName = tableName; } - - /** - * Getter for bundle instance - * - * @return Resource bundle - */ - protected final ResourceBundle getBundle () { - return this.bundle; - } }