Uses of Interface
org.w3c.dom.Attr

Packages that use Attr
org.w3c.dom The org.w3c.dom package provides the Java ME DOM API defined by JSR 280. 
 

Uses of Attr in org.w3c.dom
 

Methods in org.w3c.dom that return Attr
 Attr Element.getAttributeNode(String name)
          Retrieves an attribute node by name.
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 Attr Element.getAttributeNodeNS(String namespaceURI, String localName)
          Retrieves an Attr node by local name and namespace URI.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 Attr Document.createAttribute(String name)
          Creates an Attr of the given name.
 Attr Document.createAttributeNS(String namespaceURI, String qualifiedName)
          Creates an attribute of the given qualified name and namespace URI.
 

Methods in org.w3c.dom with parameters of type Attr
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 void Element.setIdAttributeNode(Attr idAttr, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 



Copyright © 2000,2004 World Wide Web Consortium (W3C). See the Copyright Notice for details.