}
List<FacesComponentUsage> componentsForNamespace = appAss.getComponentsForNamespace(ns);
String tagName;
for (FacesComponentUsage cur: componentsForNamespace) {
FacesComponent curFacesComponent = cur.getAnnotation();
tagName = curFacesComponent.tagName();
// if the current entry has an explicitly declared tagName...
if (null != tagName && 0 < tagName.length()) {
// compare it to the argument tagName
if (localName.equals(tagName)) {
result = cur;