} else if (COMPOSITE_LIBRARY_NAME.equals(n.getLocalName())) {
compositeLibraryName = getNodeText(n);
}
}
TagLibraryImpl taglibrary;
if (compositeLibraryName != null) {
taglibrary = new CompositeComponentTagLibrary(taglibNamespace,
compositeLibraryName);
compiler.addTagLibrary(taglibrary);
} else {
taglibrary = new TagLibraryImpl(taglibNamespace);
}
NodeList tags =
documentElement.getElementsByTagNameNS(namespace, TAG);
processTags(sc, documentElement, tags, taglibrary);