Uses of Interface
org.w3c.dom.Attr

Packages that use Attr
gnu.xml.dom This is a Free Software DOM Level 2 implementation, supporting these features: "XML", "Events", "MutationEvents", "HTMLEvents" (won't generate them though), "UIEvents" (also won't generate them), "USER-Events" (a conformant extension), and "Traversal" (optional; no TreeWalker yet). 
org.w3c.dom Contains the core and "XML" feature set of the DOM Level 2 Recommendation. 
 

Uses of Attr in gnu.xml.dom
 

Classes in gnu.xml.dom that implement Attr
 class DomAttr
           "Attr" implementation.
 

Methods in gnu.xml.dom that return Attr
 Attr DomElement.getAttributeNode(java.lang.String name)
          DOM L1 Returns the appropriate attribute node; the name is the nodeName property of the attribute.
 Attr DomElement.getAttributeNodeNS(java.lang.String namespace, java.lang.String localPart)
          DOM L2 Returns the appropriate attribute node; the name combines the namespace name and the local part.
 Attr DomElement.setAttributeNode(Attr attr)
          DOM L1 Stores the specified attribute, optionally overwriting any existing one with that name.
 Attr DomElement.setAttributeNodeNS(Attr attr)
          DOM L2 Stores the specified attribute, optionally overwriting any existing one with that name.
 Attr DomElement.removeAttributeNode(Attr node)
          DOM L1 Removes the appropriate attribute node; the name is the nodeName property of the attribute.
 Attr DomDocument.createAttribute(java.lang.String name)
          DOM L1 Returns a newly created attribute with the specified name.
 Attr DomDocument.createAttributeNS(java.lang.String namespaceURI, java.lang.String name)
          DOM L2 Returns a newly created attribute with the specified name and namespace information.
 

Methods in gnu.xml.dom with parameters of type Attr
 Attr DomElement.setAttributeNode(Attr attr)
          DOM L1 Stores the specified attribute, optionally overwriting any existing one with that name.
 Attr DomElement.setAttributeNodeNS(Attr attr)
          DOM L2 Stores the specified attribute, optionally overwriting any existing one with that name.
 Attr DomElement.removeAttributeNode(Attr node)
          DOM L1 Removes the appropriate attribute node; the name is the nodeName property of the attribute.
 

Uses of Attr in org.w3c.dom
 

Methods in org.w3c.dom that return Attr
 Attr Element.getAttributeNode(java.lang.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(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves an Attr node by local name and namespace URI.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 Attr Document.createAttribute(java.lang.String name)
          Creates an Attr of the given name.
 Attr Document.createAttributeNS(java.lang.String namespaceURI, java.lang.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.
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2001-11-20.