*/
public DOMAttributes getNamedValues() {
Map m = ACSFactory.getInstance().getClassInfo(getTagName(), (this instanceof ACSTargetElement))._attributes;
DOMAttributes d = new DOMAttributes(m);
NamedDOMNodeMap attribs = getAttributes();
for(int i = 0, len = attribs.getLength(); i < len; i++) {
DOMNode n = attribs.item(i);
d.setProperty(n.getNodeName(), n.getNodeValue());
}
return d;
}