* the Node interface.
*
* @return Name-value mappings.
*/
public DOMAttributes getNamedValues() {
DOMAttributes retval =
new DOMAttributes(getDtdElement());
NamedDOMNodeMap attribs = getAttributes();
for(int i = 0, len = attribs.getLength(); i < len; i++) {
DOMNode n = attribs.item(i);
retval.setProperty(n.getNodeName(), n.getNodeValue());
}
return retval;
}