Home | History | Annotate | Download | only in dom

Lines Matching refs:Attr

23 import org.w3c.dom.Attr;
134 Attr attr = (Attr) node;
135 AttrImpl attrCopy = createAttributeNS(attr.getNamespaceURI(), attr.getLocalName());
136 attrCopy.setPrefix(attr.getPrefix());
137 attrCopy.setNodeValue(attr.getNodeValue());
237 AttrImpl attr = (AttrImpl) node;
238 if (attr.ownerElement != null) {
239 attr.ownerElement.removeAttributeNode(attr);