Lines Matching refs:DOMException

23 import org.w3c.dom.DOMException;
216 public void removeAttribute(String name) throws DOMException { in removeAttribute()
225 throws DOMException { in removeAttributeNS()
233 public Attr removeAttributeNode(Attr oldAttr) throws DOMException { in removeAttributeNode()
237 throw new DOMException(DOMException.NOT_FOUND_ERR, null); in removeAttributeNode()
246 public void setAttribute(String name, String value) throws DOMException { in setAttribute()
258 String value) throws DOMException { in setAttributeNS()
269 public Attr setAttributeNode(Attr newAttr) throws DOMException { in setAttributeNode()
273 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null); in setAttributeNode()
277 throw new DOMException(DOMException.INUSE_ATTRIBUTE_ERR, null); in setAttributeNode()
294 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException { in setAttributeNodeNS()
298 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null); in setAttributeNodeNS()
302 throw new DOMException(DOMException.INUSE_ATTRIBUTE_ERR, null); in setAttributeNodeNS()
350 public Node removeNamedItem(String name) throws DOMException { in removeNamedItem()
354 throw new DOMException(DOMException.NOT_FOUND_ERR, null); in removeNamedItem()
361 throws DOMException { in removeNamedItemNS()
365 throw new DOMException(DOMException.NOT_FOUND_ERR, null); in removeNamedItemNS()
371 public Node setNamedItem(Node arg) throws DOMException { in setNamedItem()
373 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in setNamedItem()
379 public Node setNamedItemNS(Node arg) throws DOMException { in setNamedItemNS()
381 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in setNamedItemNS()
393 public void setIdAttribute(String name, boolean isId) throws DOMException { in setIdAttribute()
396 throw new DOMException(DOMException.NOT_FOUND_ERR, in setIdAttribute()
403 boolean isId) throws DOMException { in setIdAttributeNS()
406 throw new DOMException(DOMException.NOT_FOUND_ERR, in setIdAttributeNS()
412 public void setIdAttributeNode(Attr idAttr, boolean isId) throws DOMException { in setIdAttributeNode()