Uses of Interface
org.w3c.dom.Attr
-
Packages that use Attr 软件包 描述 javax.imageio.metadata 处理读写元数据的Java Image I / O API的一个包。org.w3c.dom 提供文档对象模型(DOM)的接口。 -
-
Uses of Attr in javax.imageio.metadata
Methods in javax.imageio.metadata that return Attr Modifier and Type 方法 描述 Attr
IIOMetadataNode. getAttributeNode(String name)
Attr
IIOMetadataNode. getAttributeNodeNS(String namespaceURI, String localName)
相当于getAttributeNode(localName)
。Attr
IIOMetadataNode. removeAttributeNode(Attr oldAttr)
Attr
IIOMetadataNode. setAttributeNode(Attr newAttr)
Attr
IIOMetadataNode. setAttributeNodeNS(Attr newAttr)
相当于setAttributeNode(newAttr)
。Methods in javax.imageio.metadata with parameters of type Attr Modifier and Type 方法 描述 Attr
IIOMetadataNode. removeAttributeNode(Attr oldAttr)
Attr
IIOMetadataNode. setAttributeNode(Attr newAttr)
Attr
IIOMetadataNode. setAttributeNodeNS(Attr newAttr)
相当于setAttributeNode(newAttr)
。void
IIOMetadataNode. setIdAttributeNode(Attr idAttr, boolean isId)
IIOMetadataNode
不支持此DOM 3级方法,并将抛出一个DOMException
。 -
Uses of Attr in org.w3c.dom
Methods in org.w3c.dom that return Attr Modifier and Type 方法 描述 Attr
Document. createAttribute(String name)
创建给定名称的Attr
。Attr
Document. createAttributeNS(String namespaceURI, String qualifiedName)
创建给定的限定名称和命名空间URI的属性。Attr
Element. getAttributeNode(String name)
按名称检索属性节点。Attr
Element. getAttributeNodeNS(String namespaceURI, String localName)
通过本地名称和命名空间URI检索Attr
节点。Attr
Element. removeAttributeNode(Attr oldAttr)
删除指定的属性节点。Attr
Element. setAttributeNode(Attr newAttr)
添加一个新的属性节点。Attr
Element. setAttributeNodeNS(Attr newAttr)
添加一个新属性。Methods in org.w3c.dom with parameters of type Attr Modifier and Type 方法 描述 Attr
Element. removeAttributeNode(Attr oldAttr)
删除指定的属性节点。Attr
Element. setAttributeNode(Attr newAttr)
添加一个新的属性节点。Attr
Element. setAttributeNodeNS(Attr newAttr)
添加一个新属性。void
Element. setIdAttributeNode(Attr idAttr, boolean isId)
如果参数isId
为true
,则此方法将指定的属性声明为用户确定的ID属性。
-