Map<String,String> getNamespacedAttributes(
String namespace
)

Gets a map for manipulating the attributes of a particular namespace.

This is primarily useful for SVG attributes such as xref:link.

Source

/**
 * Gets a map for manipulating the attributes of a particular namespace.
 *
 * This is primarily useful for SVG attributes such as xref:link.
 */
Map<String, String> getNamespacedAttributes(String namespace) {
  return new _NamespacedAttributeMap(this, namespace);
}