Uses of Interface
org.w3c.dom.Attr

Packages that use Attr
org.eclipse.ercp.xml.dom   
org.w3c.dom   
 

Uses of Attr in org.eclipse.ercp.xml.dom
 

Classes in org.eclipse.ercp.xml.dom that implement Attr
 class AttrImpl
           
 

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

Methods in org.eclipse.ercp.xml.dom with parameters of type Attr
 Attr ElementImpl.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 Attr ElementImpl.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr ElementImpl.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 

Uses of Attr in org.w3c.dom
 

Methods in org.w3c.dom that return Attr
 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.
 Attr Element.getAttributeNode(java.lang.String name)
          Retrieves an attribute node by name.
 Attr Element.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.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.