getNamespacedAttributes 方法

Map<String, String> getNamespacedAttributes(
  1. String namespace
)

获取用于操作特定命名空间属性的映射。

这主要用于 SVG 属性,如xref:link。

实现:

Map<String, String> getNamespacedAttributes(String namespace) {
  return new _NamespacedAttributeMap(this, namespace);
}