|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DOMException | |
---|---|
org.w3c.dom | |
org.w3c.dom.events | |
org.w3c.dom.ls | |
org.w3c.dom.ranges | |
org.w3c.dom.traversal |
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(java.lang.String arg)
Append the string to the end of the character data of the node. |
short |
Node.compareDocumentPosition(Node other)
Compares the reference node, i.e. the node on which this method is being called, with a node, i.e. the one passed as a parameter, with regard to their position in the document and according to the document order. |
Attr |
Document.createAttribute(java.lang.String name)
Creates an Attr of the given name. |
Attr |
Document.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Creates an attribute of the given qualified name and namespace URI. |
CDATASection |
Document.createCDATASection(java.lang.String data)
Creates a CDATASection node whose value is the specified
string. |
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. |
DocumentType |
DOMImplementation.createDocumentType(java.lang.String qualifiedName,
java.lang.String publicId,
java.lang.String systemId)
Creates an empty DocumentType node. |
Element |
Document.createElement(java.lang.String tagName)
Creates an element of the type specified. |
Element |
Document.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Creates an element of the given qualified name and namespace URI. |
EntityReference |
Document.createEntityReference(java.lang.String name)
Creates an EntityReference object. |
ProcessingInstruction |
Document.createProcessingInstruction(java.lang.String target,
java.lang.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(java.lang.String namespaceURI,
java.lang.String localName)
Retrieves an Attr node by local name and namespace URI. |
java.lang.String |
Element.getAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Retrieves an attribute value by local name and namespace URI. |
java.lang.String |
CharacterData.getData()
The character data of the node that implements this interface. |
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. |
Node |
NamedNodeMap.getNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Retrieves a node specified by local name and namespace URI. |
java.lang.String |
Node.getNodeValue()
The value of this node, depending on its type; see the table above. |
java.lang.Object |
DOMConfiguration.getParameter(java.lang.String name)
Return the value of a parameter if known. |
java.lang.String |
Node.getTextContent()
This attribute returns the text content of this node and its descendants. |
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. |
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,
java.lang.String arg)
Insert a string at the specified 16-bit unit offset. |
void |
Element.removeAttribute(java.lang.String name)
Removes an attribute by name. |
Attr |
Element.removeAttributeNode(Attr oldAttr)
Removes the specified attribute node. |
void |
Element.removeAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Removes an attribute by local name and namespace URI. |
Node |
Node.removeChild(Node oldChild)
Removes the child node indicated by oldChild from the list
of children, and returns it. |
Node |
NamedNodeMap.removeNamedItem(java.lang.String name)
Removes a node specified by name. |
Node |
NamedNodeMap.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Removes a node specified by local name and namespace URI. |
Node |
Document.renameNode(Node n,
java.lang.String namespaceURI,
java.lang.String qualifiedName)
Rename an existing node of type ELEMENT_NODE or
ATTRIBUTE_NODE . |
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,
java.lang.String arg)
Replace the characters starting at the specified 16-bit unit offset with the specified string. |
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 |
Element.setAttribute(java.lang.String name,
java.lang.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(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
Adds a new attribute. |
void |
CharacterData.setData(java.lang.String data)
The character data of the node that implements this interface. |
void |
ProcessingInstruction.setData(java.lang.String data)
The content of this processing instruction. |
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.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(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
. |
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(java.lang.String nodeValue)
The value of this node, depending on its type; see the table above. |
void |
DOMConfiguration.setParameter(java.lang.String name,
java.lang.Object value)
Set the value of a parameter. |
void |
Node.setPrefix(java.lang.String prefix)
The namespace prefix of this node, or null if it is
unspecified. |
void |
Node.setTextContent(java.lang.String textContent)
This attribute returns the text content of this node and its descendants. |
void |
Attr.setValue(java.lang.String value)
On retrieval, the value of the attribute is returned as a string. |
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. |
Text |
Text.splitText(int offset)
Breaks this node into two nodes at the specified offset ,
keeping both in the tree as siblings. |
java.lang.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(java.lang.String eventType)
|
Uses of DOMException in org.w3c.dom.ls |
---|
Methods in org.w3c.dom.ls that throw DOMException | |
---|---|
LSParser |
DOMImplementationLS.createLSParser(short mode,
java.lang.String schemaType)
Create a new LSParser . |
Document |
LSParser.parse(LSInput input)
Parse an XML document from a resource identified by a LSInput . |
Document |
LSParser.parseURI(java.lang.String uri)
Parse an XML document from a location identified by a URI reference [IETF RFC 2396]. |
Node |
LSParser.parseWithContext(LSInput input,
Node contextArg,
short action)
Parse an XML fragment from a resource identified by a LSInput and insert the content into an existing document
at the position specified with the context and
action arguments. |
java.lang.String |
LSSerializer.writeToString(Node nodeArg)
Serialize the specified node as described above in the general description of the LSSerializer interface. |
Uses of DOMException in org.w3c.dom.ranges |
---|
Methods in org.w3c.dom.ranges that throw DOMException | |
---|---|
DocumentFragment |
Range.cloneContents()
Duplicates the contents of a Range |
Range |
Range.cloneRange()
Produces a new Range whose boundary-points are equal to the boundary-points of the Range. |
void |
Range.collapse(boolean toStart)
Collapse a Range onto one of its boundary-points |
short |
Range.compareBoundaryPoints(short how,
Range sourceRange)
Compare the boundary-points of two Ranges in a document. |
void |
Range.deleteContents()
Removes the contents of a Range from the containing document or document fragment without returning a reference to the removed content. |
void |
Range.detach()
Called to indicate that the Range is no longer in use and that the implementation may relinquish any resources associated with this Range. |
DocumentFragment |
Range.extractContents()
Moves the contents of a Range from the containing document or document fragment to a new DocumentFragment. |
boolean |
Range.getCollapsed()
TRUE if the Range is collapsed |
Node |
Range.getCommonAncestorContainer()
The deepest common ancestor container of the Range's two boundary-points. |
Node |
Range.getEndContainer()
Node within which the Range ends |
int |
Range.getEndOffset()
Offset within the ending node of the Range. |
Node |
Range.getStartContainer()
Node within which the Range begins |
int |
Range.getStartOffset()
Offset within the starting node of the Range. |
void |
Range.insertNode(Node newNode)
Inserts a node into the Document or DocumentFragment at the start of the Range. |
void |
Range.selectNode(Node refNode)
Select a node and its contents |
void |
Range.selectNodeContents(Node refNode)
Select the contents within a node |
void |
Range.setEnd(Node refNode,
int offset)
Sets the attributes describing the end of a Range. |
void |
Range.setEndAfter(Node refNode)
Sets the end of a Range to be after a node |
void |
Range.setEndBefore(Node refNode)
Sets the end position to be before a node. |
void |
Range.setStart(Node refNode,
int offset)
Sets the attributes describing the start of the Range. |
void |
Range.setStartAfter(Node refNode)
Sets the start position to be after a node |
void |
Range.setStartBefore(Node refNode)
Sets the start position to be before a node |
void |
Range.surroundContents(Node newParent)
Reparents the contents of the Range to the given node and inserts the node at the position of the start of the Range. |
java.lang.String |
Range.toString()
Returns the contents of a Range as a string. |
Uses of DOMException in org.w3c.dom.traversal |
---|
Methods in org.w3c.dom.traversal that throw DOMException | |
---|---|
NodeIterator |
DocumentTraversal.createNodeIterator(Node root,
int whatToShow,
NodeFilter filter,
boolean entityReferenceExpansion)
Create a new NodeIterator over the subtree rooted at the
specified node. |
TreeWalker |
DocumentTraversal.createTreeWalker(Node root,
int whatToShow,
NodeFilter filter,
boolean entityReferenceExpansion)
Create a new TreeWalker over the subtree rooted at the
specified node. |
Node |
NodeIterator.nextNode()
Returns the next node in the set and advances the position of the NodeIterator in the set. |
Node |
NodeIterator.previousNode()
Returns the previous node in the set and moves the position of the NodeIterator backwards in the set. |
void |
TreeWalker.setCurrentNode(Node currentNode)
The node at which the TreeWalker is currently positioned. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |