}
// iterate over the list of managed beans
for (Iterator<Map.Entry<String,ApplicationResourceBundle>> i = rbMap.entrySet().iterator(); i.hasNext(); ) {
Map.Entry<String,ApplicationResourceBundle> entry = i.next();
String var = entry.getKey();
ApplicationResourceBundle bundle = entry.getValue();
if ( bundle != null) {
Locale curLocale = Util.getLocaleFromContextOrSystem(facesContext);
String description = bundle.getDescription(curLocale);
String displayName = bundle.getDisplayName(curLocale);
list.add(Util.getFeatureDescriptor(var,
displayName, description, false, false, true,
ResourceBundle.class, Boolean.TRUE));
}