String[] attributesSet = namesList.split(",");
for (String attribute : attributesSet) {
String trimmedAttribute = attribute.trim();
if (trimmedAttribute.length() != 0) {
String elExpression = String.format(elFormat, trimmedAttribute);
values.add(new NameValuePair(trimmedAttribute,
ELParser.compileEL(elExpression, componentBean)));
}
}
}
}