Home | History | Annotate | Download | only in dom

Lines Matching refs:Attr

20 import org.w3c.dom.Attr;
45 Attr attrNode = getAttributeNode(name);
58 public Attr getAttributeNode(String name) {
59 return (Attr)mAttributes.getNamedItem(name);
62 public Attr getAttributeNodeNS(String namespaceURI, String localName) {
100 public Attr removeAttributeNode(Attr oldAttr) throws DOMException {
106 Attr attribute = getAttributeNode(name);
120 public Attr setAttributeNode(Attr newAttr) throws DOMException {
125 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException {
168 public void setIdAttributeNode(Attr idAttr, boolean isId)