]> git.mxchange.org Git - jcore-utils.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Sat, 10 Oct 2015 20:04:31 +0000 (22:04 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 10 Oct 2015 20:04:31 +0000 (22:04 +0200)
- updated project files + .gitignore
- updated jars

.gitignore
lib/jcore-logger-lib.jar
lib/jcore.jar
src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
src/org/mxchange/jcoreee/validator/string/BaseStringValidator.java
src/org/mxchange/jcoreee/validator/string/names/NameValidator.java

index 1cd7a864ebb8bea89250b3347abbb6064e2db0fc..0383bcc9e4d5d046929d1f5b3102c94012efafb2 100644 (file)
@@ -1,5 +1,7 @@
 /nbproject/private/
+/nbproject/*~
 /manifest.mf
 /build/
 /dist/
+/data/*
 /*.properties
index 8e5a5b954c3f18434a17e24e50fd7392d64bf46e..4cb7da5146cc64855a32f2f76722c7325c3514cb 100644 (file)
Binary files a/lib/jcore-logger-lib.jar and b/lib/jcore-logger-lib.jar differ
index 57a3b6cecdc73685710c2cf6d6760b52b39a09d7..1a75fc00ef1f570f9b3af2edf1b0065404ef10eb 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 36aeb9c5500e9ddec8da1344399b43f9c0d6cb51..e9d6e20d0452d61878c8a73945c6656149ed93ca 100644 (file)
@@ -42,7 +42,7 @@ public class PrivacyTermsCheckboxValidator extends BaseBooleanValidator implemen
                // All accepted, required fields
                String[] requiredFileds = {"privacy", "terms"}; //NOI18N
 
-               // Pre-validation (e.g. not null, not a string, empty string ...)
+               // Pre-validation (example: not null, not a string, empty string ...)
                super.preValidate(context, component, value, requiredFileds);
 
                // Trace message
index fde1fd4a9654964da30a8eae2ba4bf6a24f07105..96392d4d964bdad6e2d1e312092174af486c1cae 100644 (file)
@@ -42,7 +42,7 @@ public class ItemAmountValidator extends BaseLongValidator implements Validator
                // The required field
                String[] requiredFileds = {"amount"}; //NOI18N
 
-               // Pre-validation (e.g. not null, not a string, empty string ...)
+               // Pre-validation (example: not null, not a string, empty string ...)
                super.preValidate(context, component, value, requiredFileds);
 
                // Trace message
index 02926b2c70d7a2c2e5a9a9d856333f8a00e9b3b7..0326176080cbbc3d099b4b3f53373eceac4cf0e4 100644 (file)
@@ -41,7 +41,7 @@ public abstract class BaseStringValidator extends BaseObjectValidator {
                // Trace message
                //this.getLogger().logTrace(MessageFormat.format("preValidate: context={0},component={1},value={2},fields={3} - CALLED!", context, component, value, Arrays.toString(requiredFields))); //NOI18N
 
-               // Pre-validate (e.g. on null)
+               // Pre-validate (example: on null)
                super.preValidate(context, component, value, requiredFields);
 
                // Get client id and init message + key
index 5f9408b4bb9ec912225408c2d77d28e0a6a963eb..9d1f8335290a6f66f29398b1d5bb72bac305ed1b 100644 (file)
@@ -42,7 +42,7 @@ public class NameValidator extends BaseStringValidator implements Validator {
                // All accepted, required fields
                String[] requiredFileds = {"firstName", "familyName", "city", "street"}; //NOI18N
 
-               // Pre-validation (e.g. not null, not a string, empty string ...)
+               // Pre-validation (example: not null, not a string, empty string ...)
                super.preValidate(context, component, value, requiredFileds);
 
                // Trace message