Uses of Class
org.w3c.dom.DOMException

Packages that use DOMException
com.sun.xml.tree This package supports in-memory XML documents in the form of a parse tree compliant with the W3C DOM Level 1 Core Recommendation, with extensions including support for XML Namespaces as defined by the current XML proposed recommendation. 
org.w3c.dom The Document Object Model (DOM™) is a Recommendation of the World Wide Web Consortium, defining programming interfaces for XML (and, optionally, HTML) documents. 
 

Uses of DOMException in com.sun.xml.tree
 

Methods in com.sun.xml.tree that throw DOMException
 void ElementNode.setAttribute(java.lang.String name, java.lang.String value)
          DOM: Assigns or modifies the value of the specified attribute.
 void ElementNode.removeAttribute(java.lang.String name)
          DOM: Remove the named attribute.
 Attr ElementNode.setAttributeNode(Attr newAttr)
          DOM: assigns the attribute
 Attr ElementNode.removeAttributeNode(Attr oldAttr)
          DOM: removes the attribute with the same name as this one
 Node XmlDocument.appendChild(Node n)
          DOM: Appends the specified child node to the document.
 Node XmlDocument.insertBefore(Node n, Node refNode)
          DOM: Inserts the specified child node into the document.
 Element XmlDocument.createElement(java.lang.String tagName)
          DOM: Create a new element, associated with this document, with no children, attributes, or parent, by calling createElementEx.
 ElementEx XmlDocument.createElementEx(java.lang.String tagName)
          Create a new element, associated with this document, with no children, attributes, or parent.
 ElementEx XmlDocument.createElementEx(java.lang.String uri, java.lang.String tagName)
          Create a new element, associated with this document, with no children, attributes, or parent.
 ProcessingInstruction XmlDocument.createProcessingInstruction(java.lang.String target, java.lang.String instructions)
          DOM: Returns a Processing Instruction node for the specified processing target, with the given instructions.
 Attr XmlDocument.createAttribute(java.lang.String name)
          DOM: Returns a valueless attribute node with no default value.
 EntityReference XmlDocument.createEntityReference(java.lang.String name)
          DOM: Creates an entity reference to the named entity.
 void XmlDocument.changeNodeOwner(Node node)
          Changes the "owner document" of the given node, and all child and associated attribute nodes, to be this document.
 

Uses of DOMException in org.w3c.dom
 

Methods in org.w3c.dom that throw DOMException
 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.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute.
 Text Text.splitText(int offset)
          Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
 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.
 void ProcessingInstruction.setData(java.lang.String data)
          Assigns the value of the data property.
 void Node.setNodeValue(java.lang.String nodeValue)
          Assigns the value of the nodeValue property.
 java.lang.String Node.getNodeValue()
          Returns the value of the nodeValue property.
 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 CharacterData.setData(java.lang.String data)
          Assigns the value of the data property.
 java.lang.String CharacterData.getData()
          Returns the value of the data property.
 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 character offset.
 void CharacterData.deleteData(int offset, int count)
          Remove a range of characters from the node.
 void CharacterData.replaceData(int offset, int count, java.lang.String arg)
          Replace the characters starting at the specified character offset with the specified string.
 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.
 



Submit Feedback to xml-feedback@java.sun.com
Copyright © 1998-1999 Sun Microsystems, Inc. All Rights Reserved.

Sun Microsystems, Inc.
901 San Antonio Road
Palo Alto, California, 94303, U.S.A.