}
// Node: R/W
public void setAttributes(Map<String, Object> attributeMap) {
final Attributes attributes = getAttributes();
attributes.clear();
for (Entry<String, Object> entry : attributeMap.entrySet()) {
attributes.set(entry.getKey(), entry.getValue());
}
}