Uses of Class
org.w3c.dom.DOMException

Packages that use DOMException
com.japisoft.fastparser.dom   
org.w3c.dom   
 

Uses of DOMException in com.japisoft.fastparser.dom
 

Subclasses of DOMException in com.japisoft.fastparser.dom
 class DOMExceptionImpl
          DOMException
 

Methods in com.japisoft.fastparser.dom that throw DOMException
 java.lang.String CharacterDataImpl.getData()
          The character data of the node that implements this interface.
 void CharacterDataImpl.setData(java.lang.String data)
           
 java.lang.String CharacterDataImpl.substringData(int offset, int count)
          Extracts a range of data from the node.
 void CharacterDataImpl.appendData(java.lang.String arg)
          Append the string to the end of the character data of the node.
 void CharacterDataImpl.insertData(int offset, java.lang.String arg)
          Insert a string at the specified character offset.
 void CharacterDataImpl.deleteData(int offset, int count)
          Remove a range of characters from the node.
 void CharacterDataImpl.replaceData(int offset, int count, java.lang.String arg)
          Replace the characters starting at the specified character offset with the specified string.
 DocumentType DOMImplementationImpl.createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
           
 Document DOMImplementationImpl.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
           
 Element DocumentImpl.createElement(java.lang.String tagName)
          Creates an element of the type specified.
 CDATASection DocumentImpl.createCDATASection(java.lang.String data)
          Creates a CDATASection node whose value is the specified string.
 ProcessingInstruction DocumentImpl.createProcessingInstruction(java.lang.String target, java.lang.String data)
          Creates a ProcessingInstruction node given the specified name and data strings.
 Attr DocumentImpl.createAttribute(java.lang.String name)
          Creates an Attr of the given name.
 EntityReference DocumentImpl.createEntityReference(java.lang.String name)
          Creates an EntityReference object.
 Node DocumentImpl.importNode(Node importedNode, boolean deep)
           
 Element DocumentImpl.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
           
 Attr DocumentImpl.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
           
 void ElementImpl.setAttribute(java.lang.String name, java.lang.String value)
          Adds a new attribute.
 void ElementImpl.removeAttribute(java.lang.String name)
          Removes an attribute by name.
 Attr ElementImpl.setAttributeNode(Attr newAttr)
          Adds a new attribute.
 Attr ElementImpl.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute.
 void ElementImpl.setAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String value)
           
 void ElementImpl.removeAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
           
 Attr ElementImpl.setAttributeNodeNS(Attr newAttr)
           
 Node NamedNodeMapImpl.setNamedItem(Node arg)
          Adds a node using its nodeName attribute.
 Node NamedNodeMapImpl.removeNamedItem(java.lang.String name)
          Removes a node specified by name.
 Node NamedNodeMapImpl.setNamedItemNS(Node arg)
           
 Node NamedNodeMapImpl.removeNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)
           
 java.lang.String NodeImpl.getNodeValue()
          The value of this node, depending on its type; see the table above.
 void NodeImpl.setNodeValue(java.lang.String nodeValue)
           
 Node NodeImpl.insertBefore(Node newChild, Node refChild)
          Inserts the node newChild before the existing child node refChild.
 Node NodeImpl.replaceChild(Node newChild, Node oldChild)
          Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
 Node NodeImpl.removeChild(Node oldChild)
          Removes the child node indicated by oldChild from the list of children, and returns it.
 Node NodeImpl.appendChild(Node newChild)
          Adds the node newChild to the end of the list of children of this node.
 void ProcessingInstructionImpl.setData(java.lang.String data)
           
 Text TextImpl.splitText(int offset)
          Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
 

Uses of DOMException in org.w3c.dom
 

Methods in org.w3c.dom that throw DOMException
 Text Text.splitText(int offset)
          Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
 void ProcessingInstruction.setData(java.lang.String data)
           
 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)
           
 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.
 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 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.
 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.
 java.lang.String CharacterData.getData()
          The character data of the node that implements this interface.
 void CharacterData.setData(java.lang.String data)
           
 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.