|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DOMException | |
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 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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |