Home | History | Annotate | Download | only in core

Lines Matching refs:newAttr

34  *     The "setAttributeNode(newAttr)" method raises an 
35 * "INUSE_ATTRIBUTE_ERR DOMException if the "newAttr"
40 * and "setAttributeNodeNS(newAttr)" methods are invoked
42 * Element. The "setAttributeNodeNS(newAttr)" method is
74 String namespaceURI = "http://www.newattr.com";
75 String qualifiedName = "emp:newAttr";
78 Attr newAttr;
90 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
91 setAttr1 = newElement.setAttributeNodeNS(newAttr);
96 setAttr2 = ((Element) /*Node */testAddr).setAttributeNodeNS(newAttr);