public boolean matchDescendantAttributes(NodeTest test) throws XPathException {
//UNDERSTAND: is it required? -shabanovd
sortInDocumentOrder();
for (int i = 0; i <= size; i++) {
final NodeImpl node = (NodeImpl) values[i];
if (node.matchDescendantAttributes(test))
{return true;}
}
return false;
}
}