Uses of Class
org.w3c.dom.DOMException

Packages that use DOMException
org.w3c.dom The org.w3c.dom package provides the Java ME DOM API defined by JSR 280. 
org.w3c.dom.events The org.w3c.dom.events package provides the Java ME DOM Events API subset defined by JSR 280. 
 

Uses of DOMException in org.w3c.dom
 

Methods in org.w3c.dom that throw DOMException
 Node Document.adoptNode(Node source)
          Attempts to adopt a node from another document to this document.
 Node Node.appendChild(Node newChild)
          Adds the node newChild to the end of the list of children of this node.
 void CharacterData.appendData(String arg)
          Append the string to the end of the character data of the node.
 Attr Document.createAttribute(String name)
          Creates an Attr of the given name.
 Attr Document.createAttributeNS(String namespaceURI, String qualifiedName)
          Creates an attribute of the given qualified name and namespace URI.
 CDATASection Document.createCDATASection(String data)
          Creates a CDATASection node whose value is the specified string.
 Document DOMImplementation.createDocument(String namespaceURI, String qualifiedName, DocumentType doctype)
          Creates an XML Document object of the specified type with its document element.
 DocumentType DOMImplementation.createDocumentType(String qualifiedName, String publicId, String systemId)
          Creates an empty DocumentType node.
 Element Document.createElement(String tagName)
          Creates an element of the type specified.
 Element Document.createElementNS(String namespaceURI, String qualifiedName)
          Creates an element of the given qualified name and namespace URI.
 EntityReference Document.createEntityReference(String name)
          Creates an EntityReference object.
 ProcessingInstruction Document.createProcessingInstruction(String target, String data)
          Creates a ProcessingInstruction node given the specified name and data strings.
 void CharacterData.deleteData(int offset, int count)
          Remove a range of 16-bit units from the node.
 Attr Element.getAttributeNodeNS(String namespaceURI, String localName)
          Retrieves an Attr node by local name and namespace URI.
 String Element.getAttributeNS(String namespaceURI, String localName)
          Retrieves an attribute value by local name and namespace URI.
 String CharacterData.getData()
          The character data of the node that implements this interface.
 NodeList Element.getElementsByTagNameNS(String namespaceURI, String localName)
          Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
 String Node.getNodeValue()
          The value of this node, depending on its type; see the table above.
 String Node.getTextContent()
          This attribute returns the text content of this node and its descendants.
 boolean Element.hasAttributeNS(String namespaceURI, 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.
 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.
 Node Node.insertBefore(Node newChild, Node refChild)
          Inserts the node newChild before the existing child node refChild.
 void CharacterData.insertData(int offset, String arg)
          Insert a string at the specified 16-bit unit offset.
 void Element.removeAttribute(String name)
          Removes an attribute by name.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 void Element.removeAttributeNS(String namespaceURI, String localName)
          Removes an attribute by local name and namespace URI.If a default value for the removed attribute is defined in the DTD, a new attribute immediately appears with the default value as well as the corresponding namespace URI, local name, and prefix when applicable.
 Node Node.removeChild(Node oldChild)
          Removes the child node indicated by oldChild from the list of children, and returns it.
 Node NamedNodeMap.removeNamedItem(String name)
          Removes a node specified by name.
 Node NamedNodeMap.removeNamedItemNS(String namespaceURI, String localName)
          Removes a node specified by local name and namespace URI.
 Node Node.replaceChild(Node newChild, Node oldChild)
          Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
 void CharacterData.replaceData(int offset, int count, String arg)
          Replace the characters starting at the specified 16-bit unit offset with the specified string.
 void Element.setAttribute(String name, String value)
          Adds a new attribute.
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 void Element.setAttributeNS(String namespaceURI, String qualifiedName, String value)
          Adds a new attribute.
 void ProcessingInstruction.setData(String data)
          The content of this processing instruction.
 void CharacterData.setData(String data)
          The character data of the node that implements this interface.
 void Element.setIdAttribute(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.setIdAttributeNode(Attr idAttr, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 void Element.setIdAttributeNS(String namespaceURI, String localName, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 Node NamedNodeMap.setNamedItem(Node arg)
          Adds a node using its nodeName attribute.
 Node NamedNodeMap.setNamedItemNS(Node arg)
          Adds a node using its namespaceURI and localName.
 void Node.setNodeValue(String nodeValue)
          The value of this node, depending on its type; see the table above.
 void Node.setPrefix(String prefix)
          The namespace prefix of this node, or null if it is unspecified.
 void Node.setTextContent(String textContent)
          This attribute returns the text content of this node and its descendants.
 void Attr.setValue(String value)
          Sets the value of this attribute.
 Text Text.splitText(int offset)
          Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings.
 String CharacterData.substringData(int offset, int count)
          Extracts a range of data from the node.
 

Uses of DOMException in org.w3c.dom.events
 

Methods in org.w3c.dom.events that throw DOMException
 Event DocumentEvent.createEvent(String eventType)
          Create an Event.
 boolean EventTarget.dispatchEvent(Event evt)
          This method allows the dispatch of events into the implementation's event model.
 



Copyright © 2011. All Rights Reserved.