Uses of Interface
org.w3c.dom.Attr

Packages that use Attr
ice.pilots.html4   
org.w3c.dom   
 

Uses of Attr in ice.pilots.html4
 

Classes in ice.pilots.html4 that implement Attr
 class DAttr
           
 

Methods in ice.pilots.html4 that return Attr
 Attr DElement.getAttributeNode(String name)
           
 Attr DElement.setAttributeNode(Attr newAttr)
           
 Attr DElement.removeAttributeNode(Attr oldAttr)
           
 Attr DElement.getAttributeNodeNS(String namespaceURI, String localName)
           
 Attr DElement.setAttributeNodeNS(Attr newAttr)
           
 Attr DDocument.createAttribute(String name)
           
 Attr DDocument.createAttributeNS(String namespaceURI, String qualifiedName)
           
 

Methods in ice.pilots.html4 with parameters of type Attr
 Attr DElement.setAttributeNode(Attr newAttr)
           
 Attr DElement.removeAttributeNode(Attr oldAttr)
           
 Attr DElement.setAttributeNodeNS(Attr newAttr)
           
 

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.