*/
public Element createElementNS(AbstractDocument document,
String namespaceURI,
String qualifiedName) {
if (namespaceURI == null)
return new GenericElement(qualifiedName.intern(), document);
if (customFactories != null) {
String name = DOMUtilities.getLocalName(qualifiedName);
ElementFactory cef;
cef = (ElementFactory)customFactories.get(namespaceURI, name);