protected boolean processAttributeExtern(Attribute attribute, IPersistable parent) {
String namespaceURI = attribute.getNamespaceURI();
/* Check for contributed Namespace Handlers */
if (!getDefaultNamespaceUri().equals(namespaceURI)) {
INamespaceHandler handler = Owl.getInterpreter().getNamespaceHandler(namespaceURI);
if (handler != null) {
handler.processAttribute(attribute, parent);
return true;
}
}
/* This Attribute has not been processed externally */