Uses of Interface
org.w3c.dom.Attr

Packages that use Attr
org.apache.html.dom   
org.apache.xerces.dom   
org.apache.xerces.domx   
org.w3c.dom   
 

Uses of Attr in org.apache.html.dom
 

Methods in org.apache.html.dom that return Attr
 Attr HTMLElementImpl.getAttributeNode(java.lang.String attrName)
           
 Attr HTMLElementImpl.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
           
 Attr HTMLDocumentImpl.createAttribute(java.lang.String name)
          Creates an Attribute having this Document as its OwnerDoc.
 

Uses of Attr in org.apache.xerces.dom
 

Classes in org.apache.xerces.dom that implement Attr
 class AttrImpl
          Attribute represents an XML-style attribute of an Element.
 class AttrNSImpl
          AttrNSImpl inherits from AttrImpl and adds namespace support.
 class DeferredAttrImpl
          Attribute represents an XML-style attribute of an Element.
 class DeferredAttrNSImpl
          DeferredAttrNSImpl is to AttrNSImpl, what DeferredAttrImpl is to AttrImpl.
 

Methods in org.apache.xerces.dom that return Attr
 Attr ElementImpl.getAttributeNode(java.lang.String name)
          Look up a single Attribute by name.
 Attr ElementImpl.removeAttributeNode(Attr oldAttr)
          Remove the specified attribute/value pair.
 Attr ElementImpl.setAttributeNode(Attr newAttr)
          Add a new attribute/value pair, or replace the value of the existing attribute with that name.
 Attr ElementImpl.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves an Attr node by local name and namespace URI.
 Attr ElementImpl.setAttributeNodeNS(Attr newAttr)
          Introduced in DOM Level 2.
 Attr CoreDocumentImpl.createAttribute(java.lang.String name)
          Factory method; creates an Attribute having this Document as its OwnerDoc.
 Attr CoreDocumentImpl.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Introduced in DOM Level 2.
 

Methods in org.apache.xerces.dom with parameters of type Attr
 Attr ElementImpl.removeAttributeNode(Attr oldAttr)
          Remove the specified attribute/value pair.
 Attr ElementImpl.setAttributeNode(Attr newAttr)
          Add a new attribute/value pair, or replace the value of the existing attribute with that name.
 Attr ElementImpl.setAttributeNodeNS(Attr newAttr)
          Introduced in DOM Level 2.
 

Uses of Attr in org.apache.xerces.domx
 

Methods in org.apache.xerces.domx with parameters of type Attr
 void XGrammarWriter.printAttribute(Attr attribute)
          Prints an 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.
 



Copyright © 1999-2001 Apache XML Project. All Rights Reserved.