Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.w3c.dom.DOMException

Uses of DOMException in org.w3c.dom
 

Methods in org.w3c.dom that throw DOMException
 java.lang.String Node.getNodeValue()
          The value of this node, depending on its type; see the table above.
 void Node.setNodeValue(java.lang.String nodeValue)
          The value of this node, depending on its type; see the table above.
 Node Node.insertBefore(Node newChild, Node refChild)
          Inserts the node newChild before the existing child node refChild.
 Node Node.replaceChild(Node newChild, Node oldChild)
          Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
 Node Node.removeChild(Node oldChild)
          Removes the child node indicated by oldChild from the list of children, and returns it.
 Node Node.appendChild(Node newChild)
          Adds the node newChild to the end of the list of children of this node.
 void Node.setPrefix(java.lang.String prefix)
          The namespace prefix of this node, or null if it is unspecified.
 short Node.compareDocumentPosition(Node other)
          Compares the reference node, i.e.
 java.lang.String Node.getTextContent()
          This attribute returns the text content of this node and its descendants.
 void Node.setTextContent(java.lang.String textContent)
          This attribute returns the text content of this node and its descendants.
 Element Document.createElement(java.lang.String tagName)
          Creates an element of the type specified.
 CDATASection Document.createCDATASection(java.lang.String data)
          Creates a CDATASection node whose value is the specified string.
 ProcessingInstruction Document.createProcessingInstruction(java.lang.String target, java.lang.String data)
          Creates a ProcessingInstruction node given the specified name and data strings.
 Attr Document.createAttribute(java.lang.String name)
          Creates an Attr of the given name.
 EntityReference Document.createEntityReference(java.lang.String name)
          Creates an EntityReference object.
 Node Document.importNode(Node importedNode, boolean deep)
          Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node.
 Element Document.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an element of the given qualified name and namespace URI.
 Attr Document.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an attribute of the given qualified name and namespace URI.
 void Document.setXmlStandalone(boolean xmlStandalone)
          An attribute specifying, as part of the XML declaration, whether this document is standalone.
 void Document.setXmlVersion(java.lang.String xmlVersion)
          An attribute specifying, as part of the XML declaration, the version number of this document.
 Node Document.adoptNode(Node source)
          Attempts to adopt a node from another document to this document.
 Node Document.renameNode(Node n, java.lang.String namespaceURI, java.lang.String qualifiedName)
          Rename an existing node of type ELEMENT_NODE or ATTRIBUTE_NODE.
 void Element.setAttribute(java.lang.String name, java.lang.String value)
          Adds a new attribute.
 void Element.removeAttribute(java.lang.String name)
          Removes an attribute by name.
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 java.lang.String Element.getAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves an attribute value by local name and namespace URI.
 void Element.setAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String value)
          Adds a new attribute.
 void Element.removeAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
          Removes an attribute by local name and namespace URI.
 Attr Element.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves an Attr node by local name and namespace URI.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 NodeList Element.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
 boolean Element.hasAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
 void Element.setIdAttribute(java.lang.String name, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 void Element.setIdAttributeNS(java.lang.String namespaceURI, java.lang.String localName, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 void Element.setIdAttributeNode(Attr idAttr, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 java.lang.String CharacterData.getData()
          The character data of the node that implements this interface.
 void CharacterData.setData(java.lang.String data)
          The character data of the node that implements this interface.
 java.lang.String CharacterData.substringData(int offset, int count)
          Extracts a range of data from the node.
 void CharacterData.appendData(java.lang.String arg)
          Append the string to the end of the character data of the node.
 void CharacterData.insertData(int offset, java.lang.String arg)
          Insert a string at the specified 16-bit unit offset.
 void CharacterData.deleteData(int offset, int count)
          Remove a range of 16-bit units from the node.
 void CharacterData.replaceData(int offset, int count, java.lang.String arg)
          Replace the characters starting at the specified 16-bit unit offset with the specified string.
 Text Text.splitText(int offset)
          Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings.
 Text Text.replaceWholeText(java.lang.String content)
          Replaces the text of the current node and all logically-adjacent text nodes with the specified text.
 void Attr.setValue(java.lang.String value)
          On retrieval, the value of the attribute is returned as a string.
 void ProcessingInstruction.setData(java.lang.String data)
          The content of this processing instruction.
 Node NamedNodeMap.setNamedItem(Node arg)
          Adds a node using its nodeName attribute.
 Node NamedNodeMap.removeNamedItem(java.lang.String name)
          Removes a node specified by name.
 Node NamedNodeMap.getNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves a node specified by local name and namespace URI.
 Node NamedNodeMap.setNamedItemNS(Node arg)
          Adds a node using its namespaceURI and localName.
 Node NamedNodeMap.removeNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)
          Removes a node specified by local name and namespace URI.
 DocumentType DOMImplementation.createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
          Creates an empty DocumentType node.
 Document DOMImplementation.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Creates a DOM Document object of the specified type with its document element.
 void DOMConfiguration.setParameter(java.lang.String name, java.lang.Object value)
          Set the value of a parameter.
 java.lang.Object DOMConfiguration.getParameter(java.lang.String name)
          Return the value of a parameter if known.