]> git.mxchange.org Git - jcoreee.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:09:41 +0000 (15:09 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:20:59 +0000 (15:20 +0200)
- auto-reformatted many files
- updated jars
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore-logger-lib.jar
lib/jcore.jar
src/org/mxchange/jcoreee/BaseEeSystem.java
src/org/mxchange/jcoreee/validator/BaseObjectValidator.java
src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
src/org/mxchange/jcoreee/validator/string/BaseStringValidator.java

index ca19891b4bbe2d8a1ad1f9a199727023c9fd0812..ccc4dab72ddc6458cad72726cde8399e9067e11c 100644 (file)
Binary files a/lib/jcore-logger-lib.jar and b/lib/jcore-logger-lib.jar differ
index 57dc0a07e9ad739e6f82121851bb5ecdf7291de2..c0bdbee1e02a1d6bf6ef6af3c07a3bd7c43e06fe 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 8ca3542da721441d7a0afa77ab11fad041e1dbd3..5e6ba736c1c8d3a3a6983c23cd6001bd7ab5f157 100644 (file)
@@ -43,6 +43,15 @@ public class BaseEeSystem implements Serializable {
                this.bundle = ResourceBundle.getBundle("org/mxchange/localization/bundle");
        }
 
+       /**
+        * Getter for bundle instance
+        *
+        * @return Bundle instance
+        */
+       protected ResourceBundle getBundle () {
+               return this.bundle;
+       }
+
        /**
         * Getter for message from given key
         *
@@ -59,13 +68,4 @@ public class BaseEeSystem implements Serializable {
                // Return message
                return this.getBundle().getString(key);
        }
-
-       /**
-        * Getter for bundle instance
-        *
-        * @return Bundle instance
-        */
-       protected ResourceBundle getBundle () {
-               return this.bundle;
-       }
 }
index 308a82e0019dc7537352796796c2d6525dfe9209..90c931b191b1c2ccfc681d216662aa5ac344ac94 100644 (file)
@@ -103,6 +103,7 @@ public abstract class BaseObjectValidator extends BaseEeSystem implements Valida
 
                // Debug message
                //this.getLogger().logDebug(MessageFormat.format("preValidate: isValidField={0}", isValidField)); //NOI18N
+
                // Valid field?
                if (!isValidField) {
                        // Invalid field
@@ -111,6 +112,7 @@ public abstract class BaseObjectValidator extends BaseEeSystem implements Valida
 
                // Debug message
                //this.getLogger().logDebug(MessageFormat.format("preValidate: facesMessage={0}", facesMessage)); //NOI18N
+
                // Is it not null?
                if (null != facesMessage) {
                        throw new ValidatorException(facesMessage);
index 076a73e271729009a18f0fcbcbbef43664e62703..d0c33f87a770f6b0215f2f9661c082d4237467ac 100644 (file)
@@ -28,6 +28,7 @@ import org.mxchange.jcoreee.validator.bool.BaseBooleanValidator;
  * @author Roland Haeder<roland@mxchange.org>
  */
 public class PrivacyTermsCheckboxValidator extends BaseBooleanValidator implements Validator {
+
        /**
         * Serial number
         */
index c104de5222a3bd78764540327567643ab7c0fbdb..d2f0334f61fc360b527c50d037c15a5a5779bc02 100644 (file)
@@ -29,6 +29,7 @@ import org.mxchange.jcoreee.validator.BaseObjectValidator;
  * @author Roland Haeder<roland@mxchange.org>
  */
 public abstract class BaseStringValidator extends BaseObjectValidator {
+
        /**
         * Serial number
         */
@@ -77,6 +78,7 @@ public abstract class BaseStringValidator extends BaseObjectValidator {
 
                // Debug message
                //this.getLogger().logDebug(MessageFormat.format("preValidate: facesMessage={0}", facesMessage)); //NOI18N
+
                // Is it not null?
                if (null != facesMessage) {
                        throw new ValidatorException(facesMessage);