Element element = (Element) node;
String prefix = name.getPrefix();
if (prefix != null) {
String namespaceUri = getNamespaceResolver().getNamespaceURI(prefix);
if (namespaceUri == null) {
throw new JXPathException(
"Unknown namespace prefix: " + prefix);
}
Namespace ns = Namespace.getNamespace(prefix, namespaceUri);
Attribute attr = element.getAttribute(name.getName(), ns);
if (attr == null) {