Uses of Interface
org.w3c.dom.Attr
| Package | Description |
|---|---|
| org.apache.harmony.xml.dom | |
| org.apache.xalan.templates |
Implements the
Templates interface,
and defines a set of classes that represent an XSLT stylesheet. |
| org.apache.xml.dtm.ref | |
| org.apache.xml.dtm.ref.dom2dtm | |
| org.apache.xml.utils |
Implementation of Xalan utility classes.
|
| org.w3c.dom |
-
Uses of Attr in org.apache.harmony.xml.dom
Classes in org.apache.harmony.xml.dom that implement Attr Modifier and Type Class Description classAttrImplProvides a straightforward implementation of the corresponding W3C DOM interface.Methods in org.apache.harmony.xml.dom that return Attr Modifier and Type Method Description AttrElementImpl. removeAttributeNode(Attr oldAttr)AttrElementImpl. setAttributeNode(Attr newAttr)AttrElementImpl. setAttributeNodeNS(Attr newAttr)Methods in org.apache.harmony.xml.dom with parameters of type Attr Modifier and Type Method Description AttrElementImpl. removeAttributeNode(Attr oldAttr)AttrElementImpl. setAttributeNode(Attr newAttr)AttrElementImpl. setAttributeNodeNS(Attr newAttr)voidElementImpl. setIdAttributeNode(Attr idAttr, boolean isId) -
Uses of Attr in org.apache.xalan.templates
Classes in org.apache.xalan.templates that implement Attr Modifier and Type Class Description classElemLiteralResult.Attribute -
Uses of Attr in org.apache.xml.dtm.ref
Classes in org.apache.xml.dtm.ref that implement Attr Modifier and Type Class Description classDTMNodeProxyDTMNodeProxypresents a DOM Node API front-end to the DTM model.Methods in org.apache.xml.dtm.ref that return Attr Modifier and Type Method Description AttrDTMNodeProxy. createAttribute(String name)AttrDTMNodeProxy. createAttributeNS(String namespaceURI, String qualifiedName)AttrDTMNodeProxy. getAttributeNode(String name)AttrDTMNodeProxy. getAttributeNodeNS(String namespaceURI, String localName)AttrDTMNodeProxy. removeAttributeNode(Attr oldAttr)AttrDTMNodeProxy. setAttributeNode(Attr newAttr)AttrDTMNodeProxy. setAttributeNodeNS(Attr newAttr)Methods in org.apache.xml.dtm.ref with parameters of type Attr Modifier and Type Method Description AttrDTMNodeProxy. removeAttributeNode(Attr oldAttr)AttrDTMNodeProxy. setAttributeNode(Attr newAttr)AttrDTMNodeProxy. setAttributeNodeNS(Attr newAttr)voidDTMNodeProxy. setIdAttributeNode(Attr at, boolean makeId)DOM Level 3: register the given attribute node as an ID attribute -
Uses of Attr in org.apache.xml.dtm.ref.dom2dtm
Classes in org.apache.xml.dtm.ref.dom2dtm that implement Attr Modifier and Type Class Description classDOM2DTMdefaultNamespaceDeclarationNodeThis is a kluge to let us shove a declaration for xml: into the DOM2DTM model. -
Uses of Attr in org.apache.xml.utils
Methods in org.apache.xml.utils that return Attr Modifier and Type Method Description AttrUnImplNode. createAttribute(String name)Unimplemented.AttrUnImplNode. createAttributeNS(String namespaceURI, String qualifiedName)Unimplemented.AttrUnImplNode. getAttributeNode(String name)Unimplemented.AttrUnImplNode. getAttributeNodeNS(String namespaceURI, String localName)Unimplemented.AttrUnImplNode. removeAttributeNode(Attr oldAttr)Unimplemented.AttrUnImplNode. setAttributeNode(Attr newAttr)Unimplemented.AttrUnImplNode. setAttributeNodeNS(Attr newAttr)Unimplemented.Methods in org.apache.xml.utils with parameters of type Attr Modifier and Type Method Description StringDOMHelper. getExpandedAttributeName(Attr attr)Deprecated.Returns the attribute name with the namespace prefix (if any) replaced by the Namespace URI it was bound to.AttrUnImplNode. removeAttributeNode(Attr oldAttr)Unimplemented.AttrUnImplNode. setAttributeNode(Attr newAttr)Unimplemented.AttrUnImplNode. setAttributeNodeNS(Attr newAttr)Unimplemented.voidUnImplNode. setIdAttributeNode(Attr at, boolean makeId)DOM Level 3: register the given attribute node as an ID attribute -
Uses of Attr in org.w3c.dom
Methods in org.w3c.dom that return Attr Modifier and Type Method Description AttrDocument. createAttribute(String name)Creates anAttrof the given name.AttrDocument. createAttributeNS(String namespaceURI, String qualifiedName)Creates an attribute of the given qualified name and namespace URI.AttrElement. getAttributeNode(String name)Retrieves an attribute node by name.AttrElement. getAttributeNodeNS(String namespaceURI, String localName)Retrieves anAttrnode by local name and namespace URI.AttrElement. removeAttributeNode(Attr oldAttr)Removes the specified attribute node.AttrElement. setAttributeNode(Attr newAttr)Adds a new attribute node.AttrElement. setAttributeNodeNS(Attr newAttr)Adds a new attribute.Methods in org.w3c.dom with parameters of type Attr Modifier and Type Method Description AttrElement. removeAttributeNode(Attr oldAttr)Removes the specified attribute node.AttrElement. setAttributeNode(Attr newAttr)Adds a new attribute node.AttrElement. setAttributeNodeNS(Attr newAttr)Adds a new attribute.voidElement. setIdAttributeNode(Attr idAttr, boolean isId)If the parameterisIdistrue, this method declares the specified attribute to be a user-determined ID attribute .