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.NodeImpl.java

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

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

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

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

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

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

/** Unsupported. */
public Node removeNamedItemNS(String namespaceURI, String localName) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

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

/** Unsupported. */
public Node setNamedItem(Node arg) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

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

/** Unsupported. */
public Node setNamedItemNS(Node arg) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

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

/** Unsupported. */
public Node adoptNode(Node arg0) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

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

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

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

/** Unsupported. */
public Attr createAttributeNS(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 CDATASection createCDATASection(String arg0) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}