|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DOMException | |
org.apache.xalan.lib.sql | Provides extension functions for connecting to a JDBC data source, executing a query, and working incrementally through "streamable" result set. |
org.apache.xalan.stree | Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan. |
org.apache.xalan.templates | Implements the Templates interface,
and defines a set of classes that represent an XSLT stylesheet. |
org.apache.xalan.transformer | In charge of run-time transformations and the production of result trees. |
org.apache.xml.utils | Implementation of Xalan utility classes. |
org.apache.xpath | Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. |
org.apache.xpath.axes | Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator. |
org.w3c.dom | Document Object Model level 2 interfaces. |
org.w3c.dom.range | DOM level 2 range interfaces. |
org.w3c.dom.traversal | DOM level 2 interfaces for traversing documents, document trees, and node sets. |
Uses of DOMException in org.apache.xalan.lib.sql |
Methods in org.apache.xalan.lib.sql that throw DOMException | |
Node |
StreamableNode.setNamedItem(Node arg)
Set the given attribute - Not supported |
Node |
StreamableNode.removeNamedItem(java.lang.String name)
Remove the attribute with the given name - Not supported |
Node |
StreamableNode.setNamedItemNS(Node arg)
Set the attribute with the given namespaced name - Not supported |
Node |
StreamableNode.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Remove the attribute with the given namespaced name - Not supported |
Text |
ColumnData.splitText(int offset)
splitText - not supported |
java.lang.String |
ColumnData.getData()
Return the value for this col element text node. |
java.lang.String |
ColumnData.getNodeValue()
Return the value for this col element text node. |
java.lang.String |
ColumnData.substringData(int offset,
int count)
substringData - Not supported. |
void |
ColumnData.appendData(java.lang.String arg)
Not supported. |
void |
ColumnData.insertData(int offset,
java.lang.String arg)
Not supported. |
void |
ColumnData.deleteData(int offset,
int count)
Not supported. |
void |
ColumnData.replaceData(int offset,
int count,
java.lang.String arg)
Not supported. |
void |
ColumnData.setData(java.lang.String data)
Not supported. |
void |
ColumnAttribute.setValue(java.lang.String value)
setValue - Not supported |
Node |
XStatement.nextNode()
Return the #Document node (one role the XStatement plays) the first time called; return null thereafter. |
Node |
XStatement.previousNode()
Throw an exception, since streaming nodes and iterators can not go backwards. |
Node |
ColumnHeader.setNamedItem(Node arg)
Set an attribute from the metadata for this column. |
Node |
ColumnHeader.removeNamedItem(java.lang.String name)
Remove an attribute - Not supported |
Node |
ColumnHeader.setNamedItemNS(Node arg)
Set namespaced attribute - Not supported |
Node |
ColumnHeader.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Removed namespaced attribute - Not supported |
Uses of DOMException in org.apache.xalan.stree |
Methods in org.apache.xalan.stree that throw DOMException | |
void |
Child.setAttribute(java.lang.String name,
java.lang.String value)
Unimplemented. |
Node |
Parent.appendChild(Node newChild)
Append a child to the child list. |
Node |
DocumentImpl.appendChild(Node newChild)
Append a child to the child list. |
Element |
DocumentImpl.createElement(java.lang.String tagName)
Create a new Element. |
CDATASection |
DocumentImpl.createCDATASection(java.lang.String data)
Create a CDATASection node. |
ProcessingInstruction |
DocumentImpl.createProcessingInstruction(java.lang.String target,
java.lang.String data)
Create a ProcessingInstruction node. |
Node |
DocumentImpl.importNode(Node importedNode,
boolean deep)
Unimplemented, since this a read-only DOM. |
Element |
DocumentImpl.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Create a new namespaced element. |
Attr |
DocumentImpl.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Unimplemented right now. |
void |
ElementImpl.setAttribute(java.lang.String name,
java.lang.String value)
Set attributes of this node. |
void |
ElementImpl.setAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
Set attributes of this node. |
void |
ElementImpl.setAttributes(Attributes atts)
Set a list of attributes of this node. |
Attr |
ElementImpl.createAttribute(java.lang.String name)
Create an attribute node. |
Attr |
ElementImpl.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Create an attribute node with a namespace . |
Node |
ElementImpl.setNamedItem(Node arg)
Adds a node using its nodeName attribute. |
Node |
ElementImpl.removeNamedItem(java.lang.String name)
Removes a node specified by name. |
Node |
ElementImpl.removeItem(int index)
Remove the attribute at the specified index from the attribute list |
Node |
ElementImpl.setNamedItemNS(Node arg)
Adds a node using its namespaceURI and
localName . |
Node |
ElementImpl.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Removes a node specified by local name and namespace URI. |
java.lang.String |
AttrImpl.getNodeValue()
Same as getValue(). |
void |
AttrImpl.setValue(java.lang.String value)
Sets the value of this attribute node. |
Node |
DocumentTypeImpl.setNamedItem(Node arg)
Adds a node using its nodeName attribute. |
Node |
DocumentTypeImpl.removeNamedItem(java.lang.String name)
Removes a node specified by name. |
Node |
DocumentTypeImpl.setNamedItemNS(Node arg)
Adds a node using its namespaceURI and
localName . |
Node |
DocumentTypeImpl.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Removes a node specified by local name and namespace URI. |
Document |
DOMImplementationImpl.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Introduced in DOM Level 2. |
Uses of DOMException in org.apache.xalan.templates |
Methods in org.apache.xalan.templates that throw DOMException | |
Node |
ElemTemplateElement.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemTemplateElement.removeChild(ElemTemplateElement childETE)
Remove a child. |
Node |
ElemTemplateElement.replaceChild(Node newChild,
Node oldChild)
Replace the old child with a new child. |
Node |
ElemSort.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemNumber.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemText.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemPI.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemForEach.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemCallTemplate.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemAttribute.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemCopyOf.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemChoose.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemAttributeSet.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemComment.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemApplyImport.appendChild(Node newChild)
Add a child to the child list. |
Node |
ElemValueOf.appendChild(Node newChild)
Add a child to the child list. |
Uses of DOMException in org.apache.xalan.transformer |
Methods in org.apache.xalan.transformer that throw DOMException | |
Node |
KeyIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
KeyRefIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Uses of DOMException in org.apache.xml.utils |
Methods in org.apache.xml.utils that throw DOMException | |
Node |
UnImplNode.appendChild(Node newChild)
Unimplemented. |
Attr |
UnImplNode.removeAttributeNode(Attr oldAttr)
Unimplemented. |
Attr |
UnImplNode.setAttributeNode(Attr newAttr)
Unimplemented. |
void |
UnImplNode.removeAttribute(java.lang.String name)
Unimplemented. |
void |
UnImplNode.setAttribute(java.lang.String name,
java.lang.String value)
Unimplemented. |
Attr |
UnImplNode.setAttributeNodeNS(Attr newAttr)
Unimplemented. |
void |
UnImplNode.removeAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Unimplemented. |
void |
UnImplNode.setAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
Unimplemented. |
java.lang.String |
UnImplNode.getNodeValue()
Unimplemented. |
void |
UnImplNode.setNodeValue(java.lang.String nodeValue)
Unimplemented. |
void |
UnImplNode.setValue(java.lang.String value)
Unimplemented. |
Node |
UnImplNode.insertBefore(Node newChild,
Node refChild)
Unimplemented. |
Node |
UnImplNode.replaceChild(Node newChild,
Node oldChild)
Unimplemented. |
Node |
UnImplNode.removeChild(Node oldChild)
Unimplemented. |
void |
UnImplNode.setPrefix(java.lang.String prefix)
Unimplemented. |
Element |
UnImplNode.createElement(java.lang.String tagName)
Unimplemented. |
CDATASection |
UnImplNode.createCDATASection(java.lang.String data)
Unimplemented. |
ProcessingInstruction |
UnImplNode.createProcessingInstruction(java.lang.String target,
java.lang.String data)
Unimplemented. |
Attr |
UnImplNode.createAttribute(java.lang.String name)
Unimplemented. |
EntityReference |
UnImplNode.createEntityReference(java.lang.String name)
Unimplemented. |
Node |
UnImplNode.importNode(Node importedNode,
boolean deep)
Unimplemented. |
Element |
UnImplNode.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Unimplemented. |
Attr |
UnImplNode.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Unimplemented. |
void |
UnImplNode.setData(java.lang.String data)
Set Node data |
java.lang.String |
UnImplNode.substringData(int offset,
int count)
Unimplemented. |
void |
UnImplNode.appendData(java.lang.String arg)
Unimplemented. |
void |
UnImplNode.insertData(int offset,
java.lang.String arg)
Unimplemented. |
void |
UnImplNode.deleteData(int offset,
int count)
Unimplemented. |
void |
UnImplNode.replaceData(int offset,
int count,
java.lang.String arg)
Unimplemented. |
Text |
UnImplNode.splitText(int offset)
Unimplemented. |
Uses of DOMException in org.apache.xpath |
Methods in org.apache.xpath that throw DOMException | |
Node |
NodeSet.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
NodeSet.previousNode()
Returns the previous node in the set and moves the position of the iterator backwards in the set. |
Uses of DOMException in org.apache.xpath.axes |
Methods in org.apache.xpath.axes that throw DOMException | |
void |
AxesWalker.setCurrentNode(Node currentNode)
Set the current node. |
Node |
LocPathIterator.previousNode()
Returns the previous node in the set and moves the position of the iterator backwards in the set. |
Node |
LocPathIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
ChildIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
DescendantIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
AttributeIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
UnionPathIterator.previousNode()
Returns the previous node in the set and moves the position of the iterator backwards in the set. |
Node |
UnionPathIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
ChildTestIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Uses of DOMException in org.w3c.dom |
Methods in org.w3c.dom that throw DOMException | |
DocumentType |
DOMImplementation.createDocumentType(java.lang.String qualifiedName,
java.lang.String publicId,
java.lang.String systemId)
Creates an empty DocumentType node. |
Document |
DOMImplementation.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Creates an XML Document object of the specified type with
its document element. |
void |
Attr.setValue(java.lang.String value)
|
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. |
void |
Node.setPrefix(java.lang.String prefix)
|
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. |
Node |
NamedNodeMap.setNamedItemNS(Node arg)
Adds a node using its namespaceURI and
localName . |
Node |
NamedNodeMap.removeNamedItemNS(java.lang.String namespaceURI,
java.lang.String localName)
Removes a node specified by local name and namespace URI. |
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 node. |
Attr |
Element.removeAttributeNode(Attr oldAttr)
Removes the specified attribute node. |
void |
Element.setAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
Adds a new attribute. |
void |
Element.removeAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Removes an attribute by local name and namespace URI. |
Attr |
Element.setAttributeNodeNS(Attr newAttr)
Adds a new 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. |
Node |
Document.importNode(Node importedNode,
boolean deep)
Imports a node from another document to this document. |
Element |
Document.createElementNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Creates an element of the given qualified name and namespace URI. |
Attr |
Document.createAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName)
Creates an attribute of the given qualified name and namespace URI. |
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.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 16-bit unit offset. |
void |
CharacterData.deleteData(int offset,
int count)
Remove a range of 16-bit units from the 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. |
Uses of DOMException in org.w3c.dom.range |
Methods in org.w3c.dom.range that throw DOMException | |
Node |
Range.getStartContainer()
Node within which the range begins |
int |
Range.getStartOffset()
Offset within the starting node of the range. |
Node |
Range.getEndContainer()
Node within which the range ends |
int |
Range.getEndOffset()
Offset within the ending node of the range. |
boolean |
Range.getCollapsed()
TRUE if the range is collapsed |
Node |
Range.getCommonAncestorContainer()
The deepest common ancestor container of the range's two boundary-points. |
void |
Range.setStart(Node refNode,
int offset)
Sets the attributes describing the start of the range. |
void |
Range.setEnd(Node refNode,
int offset)
Sets the attributes describing the end of a range. |
void |
Range.setStartBefore(Node refNode)
Sets the start position to be before a node |
void |
Range.setStartAfter(Node refNode)
Sets the start position to be after a node |
void |
Range.setEndBefore(Node refNode)
Sets the end position to be before a node. |
void |
Range.setEndAfter(Node refNode)
Sets the end of a range to be after a node |
void |
Range.collapse(boolean toStart)
Collapse a range onto one of its boundary-points |
void |
Range.selectNode(Node refNode)
Select a node and its contents |
void |
Range.selectNodeContents(Node refNode)
Select the contents within a node |
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. |
DocumentFragment |
Range.extractContents()
Moves the contents of a range from the containing document or document fragment to a new DocumentFragment. |
DocumentFragment |
Range.cloneContents()
Duplicates the contents of a range |
void |
Range.insertNode(Node newNode)
Inserts a node into the document or document fragment at the start of the range. |
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. |
Range |
Range.cloneRange()
Produces a new range whose boundary-points are equal to the boundary-points of the range. |
java.lang.String |
Range.toString()
Returns the contents of a range as a string. |
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. |
Uses of DOMException in org.w3c.dom.traversal |
Methods in org.w3c.dom.traversal that throw DOMException | |
Node |
NodeIterator.nextNode()
Returns the next node in the set and advances the position of the iterator in the set. |
Node |
NodeIterator.previousNode()
Returns the previous node in the set and moves the position of the NodeIterator backwards in the set. |
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. |
void |
TreeWalker.setCurrentNode(Node currentNode)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |