* @return Whether the country was found
*/
private boolean isCountryAdded (final Country country) {
+ // Trace message
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.isCountryAdded: country={1} - CALLED!", this.getClass().getSimpleName(), country)); //NOI18N
+
// Default is not found
boolean isAdded = false;
// Try to match code/i18n key (should be both unique!)
for (final Country currentCountry : this.countryBean.fetchAllCountries()) {
+ // Debug message
+ this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.isCountryAdded: country={1},currentCountry={2}", this.getClass().getSimpleName(), country, currentCountry)); //NOI18N
+
// Is it matching
if (Objects.equals(country, currentCountry)) {
// Yes, then set flag and abort loop
}
}
+ // Trace message
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.isCountryAdded: isAdded={1} - CALLED!", this.getClass().getSimpleName(), isAdded)); //NOI18N
+
// Return result
return isAdded;
}