Common DOM API

Uses of Interface
org.w3c.dom.Attr

Packages that use Attr
org.w3c.dom Provides the interfaces for the Document Object Model (DOM) which is a component API of the Java API for XML Processing
 

Uses of Attr in org.w3c.dom
 

Methods in org.w3c.dom that return Attr
 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.
 Attr Element.getAttributeNode(String name)
          Retrieves an attribute node by name.
 Attr Element.getAttributeNodeNS(String namespaceURI, String localName)
          Retrieves an Attr node by local name and namespace URI.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 

Methods in org.w3c.dom with parameters of type Attr
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new 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 .
 


Common DOM API

Submit a bug or feature
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 2008 Sun Microsystems, Inc. 4150 Network Circle
Santa Clara, California, 95054, U.S.A. All Rights Reserved.