Example usage for org.w3c.dom DOMException NO_MODIFICATION_ALLOWED_ERR

List of usage examples for org.w3c.dom DOMException NO_MODIFICATION_ALLOWED_ERR

Introduction

In this page you can find the example usage for org.w3c.dom DOMException NO_MODIFICATION_ALLOWED_ERR.

Prototype

short NO_MODIFICATION_ALLOWED_ERR

To view the source code for org.w3c.dom DOMException NO_MODIFICATION_ALLOWED_ERR.

Click Source Link

Document

If an attempt is made to modify an object where modifications are not allowed.

Usage

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Comment createComment(String arg0) {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public DocumentFragment createDocumentFragment() {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Element createElement(String arg0) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.NodeImpl.java

/** Unsupported. */
public Node insertBefore(Node newChild, Node refChild) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Element createElementNS(String arg0, String arg1) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public EntityReference createEntityReference(String arg0) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public ProcessingInstruction createProcessingInstruction(String arg0, String arg1) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Text createTextNode(String arg0) {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public void normalizeDocument() {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.ElementImpl.java

/** Unsupported. */
public void removeAttribute(String name) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}