// Is it set?
if (null == this.getBundle()) {
// Set it now
- setBundle(ResourceBundle.getBundle("org.mxchange.localization.messages", context.getViewRoot().getLocale()));
+ setBundle(ResourceBundle.getBundle("org.mxchange.localization.bundle", context.getViewRoot().getLocale()));
}
}
this.getLogger().trace(MessageFormat.format("context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
// All accepted, required fields
- String[] requiredFileds = {"firstName", "familyName"}; //NOI18N
+ String[] requiredFileds = {"firstName", "familyName", "city", "street"}; //NOI18N
// Pre-validation (e.g. not null, not a string, empty string ...)
super.preValidate(context, component, value, requiredFileds);