Home | History | Annotate | Download | only in dom

Lines Matching defs:DOMException

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