Uses of Interface
org.w3c.dom.Attr
Packages that use Attr
Package
Description
A package of the Java Image I/O API dealing with reading and writing
metadata.
Provides the interfaces for the Document Object Model (DOM).
-
Uses of Attr in javax.imageio.metadata
Methods in javax.imageio.metadata that return AttrModifier and TypeMethodDescriptionIIOMetadataNode.getAttributeNode
(String name) IIOMetadataNode.getAttributeNodeNS
(String namespaceURI, String localName) Equivalent togetAttributeNode(localName)
.IIOMetadataNode.removeAttributeNode
(Attr oldAttr) IIOMetadataNode.setAttributeNode
(Attr newAttr) IIOMetadataNode.setAttributeNodeNS
(Attr newAttr) Equivalent tosetAttributeNode(newAttr)
.Methods in javax.imageio.metadata with parameters of type AttrModifier and TypeMethodDescriptionIIOMetadataNode.removeAttributeNode
(Attr oldAttr) IIOMetadataNode.setAttributeNode
(Attr newAttr) IIOMetadataNode.setAttributeNodeNS
(Attr newAttr) Equivalent tosetAttributeNode(newAttr)
.void
IIOMetadataNode.setIdAttributeNode
(Attr idAttr, boolean isId) This DOM Level 3 method is not supported forIIOMetadataNode
and will throw aDOMException
. -
Uses of Attr in org.w3c.dom
Methods in org.w3c.dom that return AttrModifier and TypeMethodDescriptionDocument.createAttribute
(String name) Creates anAttr
of the given name.Document.createAttributeNS
(String namespaceURI, String qualifiedName) Creates an attribute of the given qualified name and namespace URI.Element.getAttributeNode
(String name) Retrieves an attribute node by name.Element.getAttributeNodeNS
(String namespaceURI, String localName) Retrieves anAttr
node by local name and namespace URI.Element.removeAttributeNode
(Attr oldAttr) Removes the specified attribute node.Element.setAttributeNode
(Attr newAttr) Adds a new attribute node.Element.setAttributeNodeNS
(Attr newAttr) Adds a new attribute.Methods in org.w3c.dom with parameters of type AttrModifier and TypeMethodDescriptionElement.removeAttributeNode
(Attr oldAttr) Removes the specified attribute node.Element.setAttributeNode
(Attr newAttr) Adds a new attribute node.Element.setAttributeNodeNS
(Attr newAttr) Adds a new attribute.void
Element.setIdAttributeNode
(Attr idAttr, boolean isId) If the parameterisId
istrue
, this method declares the specified attribute to be a user-determined ID attribute .