1 12 13 package org.w3c.dom; 14 15 27 public interface NamedNodeMap { 28 35 public Node getNamedItem(String name); 36 37 65 public Node setNamedItem(Node arg) 66 throws DOMException ; 67 68 82 public Node removeNamedItem(String name) 83 throws DOMException ; 84 85 93 public Node item(int index); 94 95 99 public int getLength(); 100 101 117 public Node getNamedItemNS(String namespaceURI, 118 String localName) 119 throws DOMException ; 120 121 153 public Node setNamedItemNS(Node arg) 154 throws DOMException ; 155 156 179 public Node removeNamedItemNS(String namespaceURI, 180 String localName) 181 throws DOMException ; 182 183 } 184 | Popular Tags |