Home | History | Annotate | Download | only in dom

Lines Matching defs:DOMException

22 import org.w3c.dom.DOMException;
51 public Node appendChild(Node newChild) throws DOMException {
85 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
93 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null);
97 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
107 Node insertChildAt(Node newChild, int index) throws DOMException {
118 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null);
121 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
174 public Node removeChild(Node oldChild) throws DOMException {
178 throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null);
181 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null);
196 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
203 public String getTextContent() throws DOMException {
219 void getTextContent(StringBuilder buf) throws DOMException {