|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of DOMException in org.apache.html.dom |
---|
Methods in org.apache.html.dom that throw DOMException | |
---|---|
Attr |
HTMLDocumentImpl.createAttribute(java.lang.String name)
Creates an Attribute having this Document as its OwnerDoc. |
Element |
HTMLDocumentImpl.createElement(java.lang.String tagName)
|
Element |
HTMLDocumentImpl.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String localpart)
Xerces-specific constructor. |
HTMLDocument |
HTMLDOMImplementationImpl.createHTMLDocument(java.lang.String title)
Create a new HTML document of the specified TITLE text. |
Uses of DOMException in org.apache.wml.dom |
---|
Methods in org.apache.wml.dom that throw DOMException | |
---|---|
Document |
WMLDOMImplementationImpl.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
|
Element |
WMLDocumentImpl.createElement(java.lang.String tagName)
|
Uses of DOMException in org.apache.xerces.dom |
---|
Methods in org.apache.xerces.dom that throw DOMException | |
---|---|
Node |
NodeImpl.appendChild(Node newChild)
Adds a child node to the end of the list of children for this node. |
DocumentFragment |
RangeImpl.cloneContents()
|
short |
RangeImpl.compareBoundaryPoints(short how,
Range sourceRange)
|
short |
NodeImpl.compareDocumentPosition(Node other)
Compares a node with this node with regard to their position in the document. |
ASAttributeDeclaration |
ASModelImpl.createASAttributeDeclaration(java.lang.String namespaceURI,
java.lang.String name)
Deprecated. Creates an attribute declaration. |
ASElementDeclaration |
ASModelImpl.createASElementDeclaration(java.lang.String namespaceURI,
java.lang.String name)
Deprecated. Creates an element declaration for the element type specified. |
ASEntityDeclaration |
ASModelImpl.createASEntityDeclaration(java.lang.String name)
Deprecated. Creates an ASEntityDeclaration. |
ASNotationDeclaration |
ASModelImpl.createASNotationDeclaration(java.lang.String namespaceURI,
java.lang.String name,
java.lang.String systemId,
java.lang.String publicId)
Deprecated. Creates a new notation declaration. |
Attr |
CoreDocumentImpl.createAttribute(java.lang.String name)
Factory method; creates an Attribute having this Document as its OwnerDoc. |
Attr |
CoreDocumentImpl.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Introduced in DOM Level 2. |
Attr |
PSVIDocumentImpl.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Create an attribute with PSVI information |
Attr |
CoreDocumentImpl.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String localpart)
NON-DOM: a factory method used by the Xerces DOM parser to create an element. |
Attr |
PSVIDocumentImpl.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String localName)
Create an attribute with PSVI information |
CDATASection |
CoreDocumentImpl.createCDATASection(java.lang.String data)
Factory method; creates a CDATASection having this Document as its OwnerDoc. |
Document |
CoreDOMImplementationImpl.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Introduced in DOM Level 2. |
Document |
DOMImplementationImpl.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Introduced in DOM Level 2. |
Document |
PSVIDOMImplementationImpl.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Introduced in DOM Level 2. |
DocumentType |
CoreDocumentImpl.createDocumentType(java.lang.String qualifiedName,
java.lang.String publicID,
java.lang.String systemID)
NON-DOM Factory method; creates a DocumentType having this Document as its OwnerDoc. |
Element |
CoreDocumentImpl.createElement(java.lang.String tagName)
Factory method; creates an Element having this Document as its OwnerDoc. |
ElementDefinitionImpl |
CoreDocumentImpl.createElementDefinition(java.lang.String name)
NON-DOM Factory method: creates an element definition. |
Element |
CoreDocumentImpl.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Introduced in DOM Level 2. |
Element |
PSVIDocumentImpl.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Create an element with PSVI information |
Element |
CoreDocumentImpl.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String localpart)
NON-DOM: a factory method used by the Xerces DOM parser to create an element. |
Element |
PSVIDocumentImpl.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String localpart)
Create an element with PSVI information |
Entity |
CoreDocumentImpl.createEntity(java.lang.String name)
NON-DOM Factory method; creates an Entity having this Document as its OwnerDoc. |
EntityReference |
CoreDocumentImpl.createEntityReference(java.lang.String name)
Factory method; creates an EntityReference having this Document as its OwnerDoc. |
Event |
DocumentImpl.createEvent(java.lang.String type)
Introduced in DOM Level 2. |
LSParser |
CoreDOMImplementationImpl.createLSParser(short mode,
java.lang.String schemaType)
DOM Level 3 LS CR - Experimental. |
Notation |
CoreDocumentImpl.createNotation(java.lang.String name)
NON-DOM Factory method; creates a Notation having this Document as its OwnerDoc. |
ProcessingInstruction |
CoreDocumentImpl.createProcessingInstruction(java.lang.String target,
java.lang.String data)
Factory method; creates a ProcessingInstruction having this Document as its OwnerDoc. |
void |
RangeImpl.deleteContents()
|
void |
CharacterDataImpl.deleteData(int offset,
int count)
Remove a range of characters from the node's value. |
DocumentFragment |
RangeImpl.extractContents()
|
java.lang.String |
NodeImpl.getNodeValue()
Returns the node value. |
java.lang.Object |
DOMConfigurationImpl.getParameter(java.lang.String name)
DOM Level 3 WD - Experimental. |
java.lang.String |
CoreDocumentImpl.getTextContent()
|
java.lang.String |
DocumentTypeImpl.getTextContent()
|
java.lang.String |
ParentNode.getTextContent()
|
java.lang.String |
NodeImpl.getTextContent()
This attribute returns the text content of this node and its descendants. |
Node |
CoreDocumentImpl.importNode(Node source,
boolean deep)
Copies a node from another document to this document. |
Node |
CoreDocumentImpl.insertBefore(Node newChild,
Node refChild)
Since a Document may contain at most one top-level Element child, and at most one DocumentType declaraction, we need to subclass our add-children methods to implement this constraint. |
Node |
ParentNode.insertBefore(Node newChild,
Node refChild)
Move one or more node(s) to our list of children. |
Node |
AttrImpl.insertBefore(Node newChild,
Node refChild)
Move one or more node(s) to our list of children. |
Node |
NodeImpl.insertBefore(Node newChild,
Node refChild)
Move one or more node(s) to our list of children. |
void |
CharacterDataImpl.insertData(int offset,
java.lang.String data)
Insert additional characters into the data stored in this node, at the offset specified. |
void |
RangeImpl.insertNode(Node newNode)
|
Attr |
ElementImpl.removeAttributeNode(Attr oldAttr)
Remove the specified attribute/value pair. |
Node |
CoreDocumentImpl.removeChild(Node oldChild)
Since insertBefore caches the docElement (and, currently, docType), removeChild has to know how to undo the cache REVISIT: According to the spec it is not allowed to alter neither the document element nor the document type in any way |
Node |
ParentNode.removeChild(Node oldChild)
Remove a child from this Node. |
Node |
AttrImpl.removeChild(Node oldChild)
Remove a child from this Node. |
Node |
NodeImpl.removeChild(Node oldChild)
Remove a child from this Node. |
Node |
NamedNodeMapImpl.removeNamedItem(java.lang.String name)
|
Node |
AttributeMap.removeNamedItem(java.lang.String name)
|
Node |
NamedNodeMapImpl.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String name)
Introduced in DOM Level 2. |
Node |
AttributeMap.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String name)
Introduced in DOM Level 2. |
Node |
CoreDocumentImpl.renameNode(Node n,
java.lang.String namespaceURI,
java.lang.String name)
DOM Level 3 WD - Experimental. |
Node |
CoreDocumentImpl.replaceChild(Node newChild,
Node oldChild)
Since we cache the docElement (and, currently, docType), replaceChild has to update the cache REVISIT: According to the spec it is not allowed to alter neither the document element nor the document type in any way |
Node |
ParentNode.replaceChild(Node newChild,
Node oldChild)
Make newChild occupy the location that oldChild used to have. |
Node |
AttrImpl.replaceChild(Node newChild,
Node oldChild)
Make newChild occupy the location that oldChild used to have. |
Node |
NodeImpl.replaceChild(Node newChild,
Node oldChild)
Make newChild occupy the location that oldChild used to have. |
void |
CharacterDataImpl.replaceData(int offset,
int count,
java.lang.String data)
Replace a series of characters at the specified (zero-based) offset with a new string, NOT necessarily of the same length. |
Text |
TextImpl.replaceWholeText(java.lang.String content)
Replaces the text of the current node and all logically-adjacent text nodes with the specified text. |
java.lang.String |
CoreDocumentImpl.saveXML(Node node)
DOM Level 3 WD - Experimental. |
Attr |
ElementImpl.setAttributeNode(Attr newAttr)
Add a new attribute/value pair, or replace the value of the existing attribute with that name. |
Attr |
ElementImpl.setAttributeNodeNS(Attr newAttr)
Introduced in DOM Level 2. |
void |
CharacterDataImpl.setData(java.lang.String value)
Store character data into this node. |
void |
RangeImpl.setEnd(Node refNode,
int offset)
|
Node |
NamedNodeMapImpl.setNamedItem(Node arg)
Adds a node using its nodeName attribute. |
Node |
AttributeMap.setNamedItem(Node arg)
Adds an attribute using its nodeName attribute. |
Node |
NamedNodeMapImpl.setNamedItemNS(Node arg)
Adds a node using its namespaceURI and localName. |
Node |
AttributeMap.setNamedItemNS(Node arg)
Adds an attribute using its namespaceURI and localName. |
void |
AttrImpl.setNodeValue(java.lang.String value)
Implicit in the rerouting of getNodeValue to getValue is the need to redefine setNodeValue, for symmetry's sake. |
void |
NodeImpl.setNodeValue(java.lang.String x)
Sets the node value. |
void |
DOMConfigurationImpl.setParameter(java.lang.String name,
java.lang.Object value)
DOM Level 3 WD - Experimental. |
void |
ElementNSImpl.setPrefix(java.lang.String prefix)
Introduced in DOM Level 2. |
void |
NodeImpl.setPrefix(java.lang.String prefix)
Introduced in DOM Level 2. |
void |
AttrNSImpl.setPrefix(java.lang.String prefix)
Introduced in DOM Level 2. |
void |
RangeImpl.setStart(Node refNode,
int offset)
|
void |
CoreDocumentImpl.setTextContent(java.lang.String textContent)
|
void |
DocumentTypeImpl.setTextContent(java.lang.String textContent)
|
void |
ParentNode.setTextContent(java.lang.String textContent)
|
void |
NodeImpl.setTextContent(java.lang.String textContent)
This attribute returns the text content of this node and its descendants. |
void |
CoreDocumentImpl.setXmlStandalone(boolean value)
DOM Level 3 CR - Experimental. |
Text |
TextImpl.splitText(int offset)
Break a text node into two sibling nodes. |
java.lang.String |
CharacterDataImpl.substringData(int offset,
int count)
Substring is more than a convenience function. |
void |
RangeImpl.surroundContents(Node newParent)
|
Uses of DOMException in org.apache.xerces.dom3.as |
---|
Methods in org.apache.xerces.dom3.as that throw DOMException | |
---|---|
ASAttributeDeclaration |
ASModel.createASAttributeDeclaration(java.lang.String namespaceURI,
java.lang.String name)
Deprecated. Creates an attribute declaration. |
ASElementDeclaration |
ASModel.createASElementDeclaration(java.lang.String namespaceURI,
java.lang.String name)
Deprecated. Creates an element declaration for the element type specified. |
ASEntityDeclaration |
ASModel.createASEntityDeclaration(java.lang.String name)
Deprecated. Creates an ASEntityDeclaration. |
ASNotationDeclaration |
ASModel.createASNotationDeclaration(java.lang.String namespaceURI,
java.lang.String name,
java.lang.String systemId,
java.lang.String publicId)
Deprecated. Creates a new notation declaration. |
ASElementDeclaration |
DocumentAS.getElementDeclaration()
Deprecated. Gets the AS editing object describing this elementThis method needs to be changed and others added. |
ASObject |
ASNamedObjectMap.removeNamedItem(java.lang.String name)
Deprecated. Removes an ASObject specified by a nodeName . |
ASObject |
ASNamedObjectMap.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Deprecated. Removes an ASObject specified by a namespace URI and a
local name. |
ASObject |
ASNamedObjectMap.setNamedItem(ASObject newASObject)
Deprecated. Adds an ASObject using its nodeName
attribute. |
ASObject |
ASNamedObjectMap.setNamedItemNS(ASObject newASObject)
Deprecated. Adds an ASObject using its namespaceURI and
localName . |
Uses of DOMException in org.apache.xerces.impl.xs |
---|
Methods in org.apache.xerces.impl.xs that throw DOMException | |
---|---|
java.lang.Object |
XMLSchemaLoader.getParameter(java.lang.String name)
|
java.lang.Object |
XSLoaderImpl.getParameter(java.lang.String name)
|
void |
XMLSchemaLoader.setParameter(java.lang.String name,
java.lang.Object value)
|
void |
XSLoaderImpl.setParameter(java.lang.String name,
java.lang.Object value)
|
Uses of DOMException in org.apache.xerces.impl.xs.opti |
---|
Methods in org.apache.xerces.impl.xs.opti that throw DOMException | |
---|---|
Node |
DefaultDocument.adoptNode(Node source)
DOM Level 3 |
Node |
DefaultNode.appendChild(Node newChild)
|
void |
DefaultText.appendData(java.lang.String arg)
Append the string to the end of the character data of the node. |
Attr |
DefaultDocument.createAttribute(java.lang.String name)
|
Attr |
DefaultDocument.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
|
CDATASection |
DefaultDocument.createCDATASection(java.lang.String data)
|
Element |
DefaultDocument.createElement(java.lang.String tagName)
|
Element |
DefaultDocument.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
|
EntityReference |
DefaultDocument.createEntityReference(java.lang.String name)
|
ProcessingInstruction |
DefaultDocument.createProcessingInstruction(java.lang.String target,
java.lang.String data)
|
void |
DefaultText.deleteData(int offset,
int count)
Remove a range of 16-bit units from the node. |
java.lang.String |
DefaultText.getData()
The character data of the node that implements this interface. |
java.lang.String |
TextImpl.getData()
The character data of the node that implements this interface. |
java.lang.String |
DefaultNode.getNodeValue()
|
java.lang.String |
DefaultNode.getTextContent()
|
Node |
DefaultDocument.importNode(Node importedNode,
boolean deep)
|
Node |
DefaultNode.insertBefore(Node newChild,
Node refChild)
|
void |
DefaultText.insertData(int offset,
java.lang.String arg)
Insert a string at the specified 16-bit unit offset. |
void |
DefaultElement.removeAttribute(java.lang.String name)
|
Attr |
DefaultElement.removeAttributeNode(Attr oldAttr)
|
void |
DefaultElement.removeAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
|
Node |
DefaultNode.removeChild(Node oldChild)
|
Node |
NamedNodeMapImpl.removeNamedItem(java.lang.String name)
|
Node |
NamedNodeMapImpl.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
|
Node |
DefaultDocument.renameNode(Node n,
java.lang.String namespaceURI,
java.lang.String name)
DOM Level 3 |
Node |
DefaultNode.replaceChild(Node newChild,
Node oldChild)
|
void |
DefaultText.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 |
DefaultText.replaceWholeText(java.lang.String content)
|
void |
DefaultElement.setAttribute(java.lang.String name,
java.lang.String value)
|
Attr |
DefaultElement.setAttributeNode(Attr newAttr)
|
Attr |
DefaultElement.setAttributeNodeNS(Attr newAttr)
|
void |
DefaultElement.setAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
|
void |
DefaultText.setData(java.lang.String data)
The character data of the node that implements this interface. |
void |
DefaultElement.setIdAttribute(java.lang.String name,
boolean makeId)
|
void |
DefaultElement.setIdAttributeNode(Attr at,
boolean makeId)
|
void |
DefaultElement.setIdAttributeNS(java.lang.String namespaceURI,
java.lang.String localName,
boolean makeId)
|
Node |
NamedNodeMapImpl.setNamedItem(Node arg)
|
Node |
NamedNodeMapImpl.setNamedItemNS(Node arg)
|
void |
DefaultNode.setNodeValue(java.lang.String nodeValue)
|
void |
DefaultNode.setPrefix(java.lang.String prefix)
|
void |
DefaultNode.setTextContent(java.lang.String textContent)
|
void |
AttrImpl.setValue(java.lang.String value)
|
void |
DefaultDocument.setXmlVersion(java.lang.String version)
An attribute specifying, as part of the XML declaration, the version number of this document. |
Text |
DefaultText.splitText(int offset)
Breaks this node into two nodes at the specified offset ,
keeping both in the tree as siblings. |
java.lang.String |
DefaultText.substringData(int offset,
int count)
Extracts a range of data from the node. |
java.lang.String |
TextImpl.substringData(int offset,
int count)
Extracts a range of data from the node. |
Uses of DOMException in org.apache.xerces.parsers |
---|
Methods in org.apache.xerces.parsers that throw DOMException | |
---|---|
java.lang.Object |
DOMParserImpl.getParameter(java.lang.String name)
Look up the value of a feature or a property. |
Node |
DOMParserImpl.parseWithContext(LSInput is,
Node cnode,
short action)
Parse an XML document or fragment from a resource identified by an LSInput and insert the content into an existing
document at the position epcified with the contextNode
and action arguments. |
void |
DOMParserImpl.setParameter(java.lang.String name,
java.lang.Object value)
Set parameters and properties |
Uses of DOMException in org.apache.xerces.util |
---|
Methods in org.apache.xerces.util that return DOMException | |
---|---|
static DOMException |
DOMUtil.createDOMException(short code,
java.lang.Throwable cause)
Creates a DOMException. |
Methods in org.apache.xerces.util that throw DOMException | |
---|---|
static void |
DOMUtil.copyInto(Node src,
Node dest)
Copies the source tree into the specified place in a destination tree. |
Uses of DOMException in org.apache.xml.serialize |
---|
Methods in org.apache.xml.serialize that throw DOMException | |
---|---|
java.lang.Object |
DOMSerializerImpl.getParameter(java.lang.String name)
Deprecated. DOM L3-EXPERIMENTAL: Getter for boolean and object parameters |
void |
DOMSerializerImpl.setParameter(java.lang.String name,
java.lang.Object value)
Deprecated. DOM L3-EXPERIMENTAL: Setter for boolean and object parameters |
java.lang.String |
DOMSerializerImpl.writeToString(Node wnode)
Deprecated. DOM L3 EXPERIMENTAL: Serialize the specified node as described above in the description of LSSerializer . |
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. |
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 |
ProcessingInstruction.setData(java.lang.String data)
The content of this processing instruction. |
void |
CharacterData.setData(java.lang.String data)
The character data of the node that implements this interface. |
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.css |
---|
Methods in org.w3c.dom.css that throw DOMException | |
---|---|
CSSStyleSheet |
DOMImplementationCSS.createCSSStyleSheet(java.lang.String title,
java.lang.String media)
Creates a new CSSStyleSheet . |
void |
CSSStyleSheet.deleteRule(int index)
Used to delete a rule from the style sheet. |
void |
CSSMediaRule.deleteRule(int index)
Used to delete a rule from the media block. |
Counter |
CSSPrimitiveValue.getCounterValue()
This method is used to get the Counter value. |
float |
CSSPrimitiveValue.getFloatValue(short unitType)
This method is used to get a float value in a specified unit. |
Rect |
CSSPrimitiveValue.getRectValue()
This method is used to get the Rect value. |
RGBColor |
CSSPrimitiveValue.getRGBColorValue()
This method is used to get the RGB color. |
java.lang.String |
CSSPrimitiveValue.getStringValue()
This method is used to get the string value. |
int |
CSSStyleSheet.insertRule(java.lang.String rule,
int index)
Used to insert a new rule into the style sheet. |
int |
CSSMediaRule.insertRule(java.lang.String rule,
int index)
Used to insert a new rule into the media block. |
java.lang.String |
CSSStyleDeclaration.removeProperty(java.lang.String propertyName)
Used to remove a CSS property if it has been explicitly set within this declaration block. |
void |
CSS2Properties.setAzimuth(java.lang.String azimuth)
See the azimuth property definition in CSS2. |
void |
CSS2Properties.setBackground(java.lang.String background)
See the background property definition in CSS2. |
void |
CSS2Properties.setBackgroundAttachment(java.lang.String backgroundAttachment)
See the background-attachment property definition in CSS2. |
void |
CSS2Properties.setBackgroundColor(java.lang.String backgroundColor)
See the background-color property definition in CSS2. |
void |
CSS2Properties.setBackgroundImage(java.lang.String backgroundImage)
See the background-image property definition in CSS2. |
void |
CSS2Properties.setBackgroundPosition(java.lang.String backgroundPosition)
See the background-position property definition in CSS2. |
void |
CSS2Properties.setBackgroundRepeat(java.lang.String backgroundRepeat)
See the background-repeat property definition in CSS2. |
void |
CSS2Properties.setBorder(java.lang.String border)
See the border property definition in CSS2. |
void |
CSS2Properties.setBorderBottom(java.lang.String borderBottom)
See the border-bottom property definition in CSS2. |
void |
CSS2Properties.setBorderBottomColor(java.lang.String borderBottomColor)
See the border-bottom-color property definition in CSS2. |
void |
CSS2Properties.setBorderBottomStyle(java.lang.String borderBottomStyle)
See the border-bottom-style property definition in CSS2. |
void |
CSS2Properties.setBorderBottomWidth(java.lang.String borderBottomWidth)
See the border-bottom-width property definition in CSS2. |
void |
CSS2Properties.setBorderCollapse(java.lang.String borderCollapse)
See the border-collapse property definition in CSS2. |
void |
CSS2Properties.setBorderColor(java.lang.String borderColor)
See the border-color property definition in CSS2. |
void |
CSS2Properties.setBorderLeft(java.lang.String borderLeft)
See the border-left property definition in CSS2. |
void |
CSS2Properties.setBorderLeftColor(java.lang.String borderLeftColor)
See the border-left-color property definition in CSS2. |
void |
CSS2Properties.setBorderLeftStyle(java.lang.String borderLeftStyle)
See the border-left-style property definition in CSS2. |
void |
CSS2Properties.setBorderLeftWidth(java.lang.String borderLeftWidth)
See the border-left-width property definition in CSS2. |
void |
CSS2Properties.setBorderRight(java.lang.String borderRight)
See the border-right property definition in CSS2. |
void |
CSS2Properties.setBorderRightColor(java.lang.String borderRightColor)
See the border-right-color property definition in CSS2. |
void |
CSS2Properties.setBorderRightStyle(java.lang.String borderRightStyle)
See the border-right-style property definition in CSS2. |
void |
CSS2Properties.setBorderRightWidth(java.lang.String borderRightWidth)
See the border-right-width property definition in CSS2. |
void |
CSS2Properties.setBorderSpacing(java.lang.String borderSpacing)
See the border-spacing property definition in CSS2. |
void |
CSS2Properties.setBorderStyle(java.lang.String borderStyle)
See the border-style property definition in CSS2. |
void |
CSS2Properties.setBorderTop(java.lang.String borderTop)
See the border-top property definition in CSS2. |
void |
CSS2Properties.setBorderTopColor(java.lang.String borderTopColor)
See the border-top-color property definition in CSS2. |
void |
CSS2Properties.setBorderTopStyle(java.lang.String borderTopStyle)
See the border-top-style property definition in CSS2. |
void |
CSS2Properties.setBorderTopWidth(java.lang.String borderTopWidth)
See the border-top-width property definition in CSS2. |
void |
CSS2Properties.setBorderWidth(java.lang.String borderWidth)
See the border-width property definition in CSS2. |
void |
CSS2Properties.setBottom(java.lang.String bottom)
See the bottom property definition in CSS2. |
void |
CSS2Properties.setCaptionSide(java.lang.String captionSide)
See the caption-side property definition in CSS2. |
void |
CSS2Properties.setClear(java.lang.String clear)
See the clear property definition in CSS2. |
void |
CSS2Properties.setClip(java.lang.String clip)
See the clip property definition in CSS2. |
void |
CSS2Properties.setColor(java.lang.String color)
See the color property definition in CSS2. |
void |
CSS2Properties.setContent(java.lang.String content)
See the content property definition in CSS2. |
void |
CSS2Properties.setCounterIncrement(java.lang.String counterIncrement)
See the counter-increment property definition in CSS2. |
void |
CSS2Properties.setCounterReset(java.lang.String counterReset)
See the counter-reset property definition in CSS2. |
void |
CSS2Properties.setCssFloat(java.lang.String cssFloat)
See the float property definition in CSS2. |
void |
CSSValue.setCssText(java.lang.String cssText)
A string representation of the current value. |
void |
CSSStyleDeclaration.setCssText(java.lang.String cssText)
The parsable textual representation of the declaration block (excluding the surrounding curly braces). |
void |
CSSRule.setCssText(java.lang.String cssText)
The parsable textual representation of the rule. |
void |
CSS2Properties.setCue(java.lang.String cue)
See the cue property definition in CSS2. |
void |
CSS2Properties.setCueAfter(java.lang.String cueAfter)
See the cue-after property definition in CSS2. |
void |
CSS2Properties.setCueBefore(java.lang.String cueBefore)
See the cue-before property definition in CSS2. |
void |
CSS2Properties.setCursor(java.lang.String cursor)
See the cursor property definition in CSS2. |
void |
CSS2Properties.setDirection(java.lang.String direction)
See the direction property definition in CSS2. |
void |
CSS2Properties.setDisplay(java.lang.String display)
See the display property definition in CSS2. |
void |
CSS2Properties.setElevation(java.lang.String elevation)
See the elevation property definition in CSS2. |
void |
CSS2Properties.setEmptyCells(java.lang.String emptyCells)
See the empty-cells property definition in CSS2. |
void |
CSSCharsetRule.setEncoding(java.lang.String encoding)
The encoding information used in this @charset rule. |
void |
CSSPrimitiveValue.setFloatValue(short unitType,
float floatValue)
A method to set the float value with a specified unit. |
void |
CSS2Properties.setFont(java.lang.String font)
See the font property definition in CSS2. |
void |
CSS2Properties.setFontFamily(java.lang.String fontFamily)
See the font-family property definition in CSS2. |
void |
CSS2Properties.setFontSize(java.lang.String fontSize)
See the font-size property definition in CSS2. |
void |
CSS2Properties.setFontSizeAdjust(java.lang.String fontSizeAdjust)
See the font-size-adjust property definition in CSS2. |
void |
CSS2Properties.setFontStretch(java.lang.String fontStretch)
See the font-stretch property definition in CSS2. |
void |
CSS2Properties.setFontStyle(java.lang.String fontStyle)
See the font-style property definition in CSS2. |
void |
CSS2Properties.setFontVariant(java.lang.String fontVariant)
See the font-variant property definition in CSS2. |
void |
CSS2Properties.setFontWeight(java.lang.String fontWeight)
See the font-weight property definition in CSS2. |
void |
CSS2Properties.setHeight(java.lang.String height)
See the height property definition in CSS2. |
void |
CSS2Properties.setLeft(java.lang.String left)
See the left property definition in CSS2. |
void |
CSS2Properties.setLetterSpacing(java.lang.String letterSpacing)
See the letter-spacing property definition in CSS2. |
void |
CSS2Properties.setLineHeight(java.lang.String lineHeight)
See the line-height property definition in CSS2. |
void |
CSS2Properties.setListStyle(java.lang.String listStyle)
See the list-style property definition in CSS2. |
void |
CSS2Properties.setListStyleImage(java.lang.String listStyleImage)
See the list-style-image property definition in CSS2. |
void |
CSS2Properties.setListStylePosition(java.lang.String listStylePosition)
See the list-style-position property definition in CSS2. |
void |
CSS2Properties.setListStyleType(java.lang.String listStyleType)
See the list-style-type property definition in CSS2. |
void |
CSS2Properties.setMargin(java.lang.String margin)
See the margin property definition in CSS2. |
void |
CSS2Properties.setMarginBottom(java.lang.String marginBottom)
See the margin-bottom property definition in CSS2. |
void |
CSS2Properties.setMarginLeft(java.lang.String marginLeft)
See the margin-left property definition in CSS2. |
void |
CSS2Properties.setMarginRight(java.lang.String marginRight)
See the margin-right property definition in CSS2. |
void |
CSS2Properties.setMarginTop(java.lang.String marginTop)
See the margin-top property definition in CSS2. |
void |
CSS2Properties.setMarkerOffset(java.lang.String markerOffset)
See the marker-offset property definition in CSS2. |
void |
CSS2Properties.setMarks(java.lang.String marks)
See the marks property definition in CSS2. |
void |
CSS2Properties.setMaxHeight(java.lang.String maxHeight)
See the max-height property definition in CSS2. |
void |
CSS2Properties.setMaxWidth(java.lang.String maxWidth)
See the max-width property definition in CSS2. |
void |
CSS2Properties.setMinHeight(java.lang.String minHeight)
See the min-height property definition in CSS2. |
void |
CSS2Properties.setMinWidth(java.lang.String minWidth)
See the min-width property definition in CSS2. |
void |
CSS2Properties.setOrphans(java.lang.String orphans)
See the orphans property definition in CSS2. |
void |
CSS2Properties.setOutline(java.lang.String outline)
See the outline property definition in CSS2. |
void |
CSS2Properties.setOutlineColor(java.lang.String outlineColor)
See the outline-color property definition in CSS2. |
void |
CSS2Properties.setOutlineStyle(java.lang.String outlineStyle)
See the outline-style property definition in CSS2. |
void |
CSS2Properties.setOutlineWidth(java.lang.String outlineWidth)
See the outline-width property definition in CSS2. |
void |
CSS2Properties.setOverflow(java.lang.String overflow)
See the overflow property definition in CSS2. |
void |
CSS2Properties.setPadding(java.lang.String padding)
See the padding property definition in CSS2. |
void |
CSS2Properties.setPaddingBottom(java.lang.String paddingBottom)
See the padding-bottom property definition in CSS2. |
void |
CSS2Properties.setPaddingLeft(java.lang.String paddingLeft)
See the padding-left property definition in CSS2. |
void |
CSS2Properties.setPaddingRight(java.lang.String paddingRight)
See the padding-right property definition in CSS2. |
void |
CSS2Properties.setPaddingTop(java.lang.String paddingTop)
See the padding-top property definition in CSS2. |
void |
CSS2Properties.setPage(java.lang.String page)
See the page property definition in CSS2. |
void |
CSS2Properties.setPageBreakAfter(java.lang.String pageBreakAfter)
See the page-break-after property definition in CSS2. |
void |
CSS2Properties.setPageBreakBefore(java.lang.String pageBreakBefore)
See the page-break-before property definition in CSS2. |
void |
CSS2Properties.setPageBreakInside(java.lang.String pageBreakInside)
See the page-break-inside property definition in CSS2. |
void |
CSS2Properties.setPause(java.lang.String pause)
See the pause property definition in CSS2. |
void |
CSS2Properties.setPauseAfter(java.lang.String pauseAfter)
See the pause-after property definition in CSS2. |
void |
CSS2Properties.setPauseBefore(java.lang.String pauseBefore)
See the pause-before property definition in CSS2. |
void |
CSS2Properties.setPitch(java.lang.String pitch)
See the pitch property definition in CSS2. |
void |
CSS2Properties.setPitchRange(java.lang.String pitchRange)
See the pitch-range property definition in CSS2. |
void |
CSS2Properties.setPlayDuring(java.lang.String playDuring)
See the play-during property definition in CSS2. |
void |
CSS2Properties.setPosition(java.lang.String position)
See the position property definition in CSS2. |
void |
CSSStyleDeclaration.setProperty(java.lang.String propertyName,
java.lang.String value,
java.lang.String priority)
Used to set a property value and priority within this declaration block. |
void |
CSS2Properties.setQuotes(java.lang.String quotes)
See the quotes property definition in CSS2. |
void |
CSS2Properties.setRichness(java.lang.String richness)
See the richness property definition in CSS2. |
void |
CSS2Properties.setRight(java.lang.String right)
See the right property definition in CSS2. |
void |
CSSStyleRule.setSelectorText(java.lang.String selectorText)
The textual representation of the selector for the rule set. |
void |
CSSPageRule.setSelectorText(java.lang.String selectorText)
The parsable textual representation of the page selector for the rule. |
void |
CSS2Properties.setSize(java.lang.String size)
See the size property definition in CSS2. |
void |
CSS2Properties.setSpeak(java.lang.String speak)
See the speak property definition in CSS2. |
void |
CSS2Properties.setSpeakHeader(java.lang.String speakHeader)
See the speak-header property definition in CSS2. |
void |
CSS2Properties.setSpeakNumeral(java.lang.String speakNumeral)
See the speak-numeral property definition in CSS2. |
void |
CSS2Properties.setSpeakPunctuation(java.lang.String speakPunctuation)
See the speak-punctuation property definition in CSS2. |
void |
CSS2Properties.setSpeechRate(java.lang.String speechRate)
See the speech-rate property definition in CSS2. |
void |
CSS2Properties.setStress(java.lang.String stress)
See the stress property definition in CSS2. |
void |
CSSPrimitiveValue.setStringValue(short stringType,
java.lang.String stringValue)
A method to set the string value with the specified unit. |
void |
CSS2Properties.setTableLayout(java.lang.String tableLayout)
See the table-layout property definition in CSS2. |
void |
CSS2Properties.setTextAlign(java.lang.String textAlign)
See the text-align property definition in CSS2. |
void |
CSS2Properties.setTextDecoration(java.lang.String textDecoration)
See the text-decoration property definition in CSS2. |
void |
CSS2Properties.setTextIndent(java.lang.String textIndent)
See the text-indent property definition in CSS2. |
void |
CSS2Properties.setTextShadow(java.lang.String textShadow)
See the text-shadow property definition in CSS2. |
void |
CSS2Properties.setTextTransform(java.lang.String textTransform)
See the text-transform property definition in CSS2. |
void |
CSS2Properties.setTop(java.lang.String top)
See the top property definition in CSS2. |
void |
CSS2Properties.setUnicodeBidi(java.lang.String unicodeBidi)
See the unicode-bidi property definition in CSS2. |
void |
CSS2Properties.setVerticalAlign(java.lang.String verticalAlign)
See the vertical-align property definition in CSS2. |
void |
CSS2Properties.setVisibility(java.lang.String visibility)
See the visibility property definition in CSS2. |
void |
CSS2Properties.setVoiceFamily(java.lang.String voiceFamily)
See the voice-family property definition in CSS2. |
void |
CSS2Properties.setVolume(java.lang.String volume)
See the volume property definition in CSS2. |
void |
CSS2Properties.setWhiteSpace(java.lang.String whiteSpace)
See the white-space property definition in CSS2. |
void |
CSS2Properties.setWidows(java.lang.String widows)
See the widows property definition in CSS2. |
void |
CSS2Properties.setWidth(java.lang.String width)
See the width property definition in CSS2. |
void |
CSS2Properties.setWordSpacing(java.lang.String wordSpacing)
See the word-spacing property definition in CSS2. |
void |
CSS2Properties.setZIndex(java.lang.String zIndex)
See the z-index property definition in CSS2. |
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.smil |
---|
Methods in org.w3c.dom.smil that throw DOMException | |
---|---|
boolean |
ElementTimeControl.beginElement()
Causes this element to begin the local timeline (subject to restart constraints). |
boolean |
ElementTimeControl.beginElementAt(float offset)
Causes this element to begin the local timeline (subject to restart constraints), at the passed offset from the current time when the method is called. |
boolean |
ElementTimeControl.endElement()
Causes this element to end the local timeline. |
boolean |
ElementTimeControl.endElementAt(float offset)
Causes this element to end the local timeline at the specified offset from the current time when the method is called |
Uses of DOMException in org.w3c.dom.stylesheets |
---|
Methods in org.w3c.dom.stylesheets that throw DOMException | |
---|---|
void |
MediaList.appendMedium(java.lang.String newMedium)
Adds the medium newMedium to the end of the list. |
void |
MediaList.deleteMedium(java.lang.String oldMedium)
Deletes the medium indicated by oldMedium from the list. |
void |
MediaList.setMediaText(java.lang.String mediaText)
The parsable textual representation of the media list. |
Uses of DOMException in org.w3c.dom.svg |
---|
Methods in org.w3c.dom.svg that throw DOMException | |
---|---|
java.lang.String |
SVGStringList.appendItem(java.lang.String newItem)
|
SVGLength |
SVGLengthList.appendItem(SVGLength newItem)
|
SVGNumber |
SVGNumberList.appendItem(SVGNumber newItem)
|
SVGPathSeg |
SVGPathSegList.appendItem(SVGPathSeg newItem)
|
SVGPoint |
SVGPointList.appendItem(SVGPoint newItem)
|
SVGTransform |
SVGTransformList.appendItem(SVGTransform newItem)
|
void |
SVGLengthList.clear()
|
void |
SVGStringList.clear()
|
void |
SVGPointList.clear()
|
void |
SVGPathSegList.clear()
|
void |
SVGTransformList.clear()
|
void |
SVGNumberList.clear()
|
SVGPoint |
SVGTextContentElement.getEndPositionOfChar(int charnum)
|
SVGRect |
SVGTextContentElement.getExtentOfChar(int charnum)
|
SVGLength |
SVGLengthList.getItem(int index)
|
java.lang.String |
SVGStringList.getItem(int index)
|
SVGPoint |
SVGPointList.getItem(int index)
|
SVGPathSeg |
SVGPathSegList.getItem(int index)
|
SVGTransform |
SVGTransformList.getItem(int index)
|
SVGNumber |
SVGNumberList.getItem(int index)
|
float |
SVGTextContentElement.getRotationOfChar(int charnum)
|
float |
SVGAnimationElement.getSimpleDuration()
|
SVGPoint |
SVGTextContentElement.getStartPositionOfChar(int charnum)
|
float |
SVGTextContentElement.getSubStringLength(int charnum,
int nchars)
|
SVGDocument |
GetSVGDocument.getSVGDocument()
|
java.lang.String |
SVGStringList.initialize(java.lang.String newItem)
|
SVGLength |
SVGLengthList.initialize(SVGLength newItem)
|
SVGNumber |
SVGNumberList.initialize(SVGNumber newItem)
|
SVGPathSeg |
SVGPathSegList.initialize(SVGPathSeg newItem)
|
SVGPoint |
SVGPointList.initialize(SVGPoint newItem)
|
SVGTransform |
SVGTransformList.initialize(SVGTransform newItem)
|
java.lang.String |
SVGStringList.insertItemBefore(java.lang.String newItem,
int index)
|
SVGLength |
SVGLengthList.insertItemBefore(SVGLength newItem,
int index)
|
SVGNumber |
SVGNumberList.insertItemBefore(SVGNumber newItem,
int index)
|
SVGPathSeg |
SVGPathSegList.insertItemBefore(SVGPathSeg newItem,
int index)
|
SVGPoint |
SVGPointList.insertItemBefore(SVGPoint newItem,
int index)
|
SVGTransform |
SVGTransformList.insertItemBefore(SVGTransform newItem,
int index)
|
SVGLength |
SVGLengthList.removeItem(int index)
|
java.lang.String |
SVGStringList.removeItem(int index)
|
SVGPoint |
SVGPointList.removeItem(int index)
|
SVGPathSeg |
SVGPathSegList.removeItem(int index)
|
SVGTransform |
SVGTransformList.removeItem(int index)
|
SVGNumber |
SVGNumberList.removeItem(int index)
|
java.lang.String |
SVGStringList.replaceItem(java.lang.String newItem,
int index)
|
SVGLength |
SVGLengthList.replaceItem(SVGLength newItem,
int index)
|
SVGNumber |
SVGNumberList.replaceItem(SVGNumber newItem,
int index)
|
SVGPathSeg |
SVGPathSegList.replaceItem(SVGPathSeg newItem,
int index)
|
SVGPoint |
SVGPointList.replaceItem(SVGPoint newItem,
int index)
|
SVGTransform |
SVGTransformList.replaceItem(SVGTransform newItem,
int index)
|
void |
SVGTextContentElement.selectSubString(int charnum,
int nchars)
|
void |
SVGMatrix.setA(float a)
|
void |
SVGPreserveAspectRatio.setAlign(short align)
|
void |
SVGPathSegArcRel.setAngle(float angle)
|
void |
SVGPathSegArcAbs.setAngle(float angle)
|
void |
SVGMatrix.setB(float b)
|
void |
SVGAnimatedBoolean.setBaseVal(boolean baseVal)
|
void |
SVGAnimatedNumber.setBaseVal(float baseVal)
|
void |
SVGAnimatedInteger.setBaseVal(int baseVal)
|
void |
SVGAnimatedEnumeration.setBaseVal(short baseVal)
|
void |
SVGAnimatedString.setBaseVal(java.lang.String baseVal)
|
void |
SVGMatrix.setC(float c)
|
void |
SVGICCColor.setColorProfile(java.lang.String colorProfile)
|
void |
SVGSVGElement.setContentScriptType(java.lang.String contentScriptType)
|
void |
SVGSVGElement.setContentStyleType(java.lang.String contentStyleType)
|
void |
SVGSVGElement.setCurrentScale(float currentScale)
|
void |
SVGMatrix.setD(float d)
|
void |
SVGGlyphRefElement.setDx(float dx)
|
void |
SVGGlyphRefElement.setDy(float dy)
|
void |
SVGMatrix.setE(float e)
|
void |
SVGMatrix.setF(float f)
|
void |
SVGGlyphRefElement.setFormat(java.lang.String format)
|
void |
SVGAltGlyphElement.setFormat(java.lang.String format)
|
void |
SVGGlyphRefElement.setGlyphRef(java.lang.String glyphRef)
|
void |
SVGAltGlyphElement.setGlyphRef(java.lang.String glyphRef)
|
void |
SVGRect.setHeight(float height)
|
void |
SVGElement.setId(java.lang.String id)
|
void |
SVGPathSegArcRel.setLargeArcFlag(boolean largeArcFlag)
|
void |
SVGPathSegArcAbs.setLargeArcFlag(boolean largeArcFlag)
|
void |
SVGColorProfileElement.setLocal(java.lang.String local)
|
void |
SVGStyleElement.setMedia(java.lang.String media)
|
void |
SVGPreserveAspectRatio.setMeetOrSlice(short meetOrSlice)
|
void |
SVGColorProfileElement.setName(java.lang.String name)
|
void |
SVGColorProfileRule.setName(java.lang.String name)
|
void |
SVGPathSegArcRel.setR1(float r1)
|
void |
SVGPathSegArcAbs.setR1(float r1)
|
void |
SVGPathSegArcRel.setR2(float r2)
|
void |
SVGPathSegArcAbs.setR2(float r2)
|
void |
SVGColorProfileElement.setRenderingIntent(short renderingIntent)
|
void |
SVGColorProfileRule.setRenderingIntent(short renderingIntent)
|
void |
SVGColorProfileRule.setSrc(java.lang.String src)
|
void |
SVGPathSegArcRel.setSweepFlag(boolean sweepFlag)
|
void |
SVGPathSegArcAbs.setSweepFlag(boolean sweepFlag)
|
void |
SVGStyleElement.setTitle(java.lang.String title)
|
void |
SVGStyleElement.setType(java.lang.String type)
|
void |
SVGScriptElement.setType(java.lang.String type)
|
void |
SVGSVGElement.setUseCurrentView(boolean useCurrentView)
|
void |
SVGNumber.setValue(float value)
|
void |
SVGAngle.setValue(float value)
|
void |
SVGLength.setValue(float value)
|
void |
SVGAngle.setValueAsString(java.lang.String valueAsString)
|
void |
SVGLength.setValueAsString(java.lang.String valueAsString)
|
void |
SVGAngle.setValueInSpecifiedUnits(float valueInSpecifiedUnits)
|
void |
SVGLength.setValueInSpecifiedUnits(float valueInSpecifiedUnits)
|
void |
SVGRect.setWidth(float width)
|
void |
SVGPathSegLinetoRel.setX(float x)
|
void |
SVGPathSegCurvetoQuadraticAbs.setX(float x)
|
void |
SVGPathSegMovetoRel.setX(float x)
|
void |
SVGPathSegCurvetoQuadraticSmoothAbs.setX(float x)
|
void |
SVGPathSegCurvetoQuadraticSmoothRel.setX(float x)
|
void |
SVGPathSegArcRel.setX(float x)
|
void |
SVGPathSegCurvetoCubicRel.setX(float x)
|
void |
SVGPathSegLinetoHorizontalAbs.setX(float x)
|
void |
SVGGlyphRefElement.setX(float x)
|
void |
SVGPathSegLinetoHorizontalRel.setX(float x)
|
void |
SVGPathSegArcAbs.setX(float x)
|
void |
SVGPathSegMovetoAbs.setX(float x)
|
void |
SVGRect.setX(float x)
|
void |
SVGPoint.setX(float x)
|
void |
SVGPathSegCurvetoQuadraticRel.setX(float x)
|
void |
SVGPathSegCurvetoCubicSmoothAbs.setX(float x)
|
void |
SVGPathSegCurvetoCubicSmoothRel.setX(float x)
|
void |
SVGPathSegCurvetoCubicAbs.setX(float x)
|
void |
SVGPathSegLinetoAbs.setX(float x)
|
void |
SVGPathSegCurvetoQuadraticAbs.setX1(float x1)
|
void |
SVGPathSegCurvetoCubicRel.setX1(float x1)
|
void |
SVGPathSegCurvetoQuadraticRel.setX1(float x1)
|
void |
SVGPathSegCurvetoCubicAbs.setX1(float x1)
|
void |
SVGPathSegCurvetoCubicRel.setX2(float x2)
|
void |
SVGPathSegCurvetoCubicSmoothAbs.setX2(float x2)
|
void |
SVGPathSegCurvetoCubicSmoothRel.setX2(float x2)
|
void |
SVGPathSegCurvetoCubicAbs.setX2(float x2)
|
void |
SVGElement.setXMLbase(java.lang.String xmlbase)
|
void |
SVGLangSpace.setXMLlang(java.lang.String xmllang)
|
void |
SVGLangSpace.setXMLspace(java.lang.String xmlspace)
|
void |
SVGStyleElement.setXMLspace(java.lang.String xmlspace)
|
void |
SVGPathSegLinetoRel.setY(float y)
|
void |
SVGPathSegCurvetoQuadraticAbs.setY(float y)
|
void |
SVGPathSegMovetoRel.setY(float y)
|
void |
SVGPathSegCurvetoQuadraticSmoothAbs.setY(float y)
|
void |
SVGPathSegCurvetoQuadraticSmoothRel.setY(float y)
|
void |
SVGPathSegArcRel.setY(float y)
|
void |
SVGPathSegCurvetoCubicRel.setY(float y)
|
void |
SVGGlyphRefElement.setY(float y)
|
void |
SVGPathSegArcAbs.setY(float y)
|
void |
SVGPathSegLinetoVerticalRel.setY(float y)
|
void |
SVGPathSegLinetoVerticalAbs.setY(float y)
|
void |
SVGPathSegMovetoAbs.setY(float y)
|
void |
SVGRect.setY(float y)
|
void |
SVGPoint.setY(float y)
|
void |
SVGPathSegCurvetoQuadraticRel.setY(float y)
|
void |
SVGPathSegCurvetoCubicSmoothAbs.setY(float y)
|
void |
SVGPathSegCurvetoCubicSmoothRel.setY(float y)
|
void |
SVGPathSegCurvetoCubicAbs.setY(float y)
|
void |
SVGPathSegLinetoAbs.setY(float y)
|
void |
SVGPathSegCurvetoQuadraticAbs.setY1(float y1)
|
void |
SVGPathSegCurvetoCubicRel.setY1(float y1)
|
void |
SVGPathSegCurvetoQuadraticRel.setY1(float y1)
|
void |
SVGPathSegCurvetoCubicAbs.setY1(float y1)
|
void |
SVGPathSegCurvetoCubicRel.setY2(float y2)
|
void |
SVGPathSegCurvetoCubicSmoothAbs.setY2(float y2)
|
void |
SVGPathSegCurvetoCubicSmoothRel.setY2(float y2)
|
void |
SVGPathSegCurvetoCubicAbs.setY2(float y2)
|
void |
SVGZoomAndPan.setZoomAndPan(short zoomAndPan)
|
void |
SVGSVGElement.unsuspendRedraw(int suspend_handle_id)
|
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. |
Uses of DOMException in org.w3c.dom.xpath |
---|
Methods in org.w3c.dom.xpath that throw DOMException | |
---|---|
XPathExpression |
XPathEvaluator.createExpression(java.lang.String expression,
XPathNSResolver resolver)
Creates a parsed XPath expression with resolved namespaces. |
java.lang.Object |
XPathExpression.evaluate(Node contextNode,
short type,
java.lang.Object result)
Evaluates this XPath expression and returns a result. |
java.lang.Object |
XPathEvaluator.evaluate(java.lang.String expression,
Node contextNode,
XPathNSResolver resolver,
short type,
java.lang.Object result)
Evaluates an XPath expression string and returns a result of the specified type if possible. |
Node |
XPathResult.iterateNext()
Iterates and returns the next node from the node set or null if there are no more nodes. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |