Google

Java API for XML Processing Specification 1.1: Index
A C D E F G H I J L M N O P R S T U W X

A

Deprecated. Add an attribute to an attribute list.
Add an attribute to the end of the list.
appendChild(Node) - Method in interface org.w3c.dom.Node
Adds the node newChild to the end of the list of children of this node.
appendData(String) - Method in interface org.w3c.dom.CharacterData
Append the string to the end of the character data of the node.
Attr - interface org.w3c.dom.Attr.
The Attr interface represents an attribute in an Element object.
ATTRIBUTE_NODE - Static variable in interface org.w3c.dom.Node
The node is an Attr.
Report an attribute type declaration. that interface has been replaced by which is implemented in the
Deprecated. Create an empty attribute list.
Deprecated. Construct a persistent copy of an existing attribute list.
Construct a new, empty AttributesImpl object.
Copy an existing Attributes object.

C

CDATA_SECTION_NODE - Static variable in interface org.w3c.dom.Node
The node is a CDATASection.
CDATASection - interface org.w3c.dom.CDATASection.
CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup.
CharacterData - interface org.w3c.dom.CharacterData.
The CharacterData interface extends Node with a set of
Receive notification of character data.
Deprecated. Receive notification of character data inside an element.
Deprecated. Receive notification of character data.
Adapt a SAX2 characters event.
Filter a character data event.
Adapt a SAX1 characters event.
Receive notification of character data inside an element.
Deprecated. Clear the attribute list.
Clear the attribute list for reuse.
cloneNode(boolean) - Method in interface org.w3c.dom.Node
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes.
code - Variable in class org.w3c.dom.DOMException
 
Comment - interface org.w3c.dom.Comment.
This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting ' <!--' and ending '-->'.
COMMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Comment.
Report an XML comment anywhere in the document. Method in interface org.w3c.dom.Document
Creates an Attr of the given name.
createAttributeNS(String, String) - Method in interface org.w3c.dom.Document
Creates an attribute of the given qualified name and namespace URI.
createCDATASection(String) - Method in interface org.w3c.dom.Document
Creates a CDATASection node whose value is the specified string.
createComment(String) - Method in interface org.w3c.dom.Document
Creates a Comment node given the specified string.
createDocument(String, String, DocumentType) - Method in interface org.w3c.dom.DOMImplementation
Creates a DOM Document object of the specified type with its document element.
createDocumentFragment() - Method in interface org.w3c.dom.Document
Creates an empty DocumentFragment object.
createDocumentType(String, String, String) - Method in interface org.w3c.dom.DOMImplementation
Creates an empty DocumentType node.
createElement(String) - Method in interface org.w3c.dom.Document
Creates an element of the type specified.
createElementNS(String, String) - Method in interface org.w3c.dom.Document
Creates an element of the given qualified name and namespace URI.
createEntityReference(String) - Method in interface org.w3c.dom.Document
Creates an EntityReference object.
createProcessingInstruction(String, String) - Method in interface org.w3c.dom.Document
Creates a ProcessingInstruction node given the specified name and data strings.
createTextNode(String) - Method in interface org.w3c.dom.Document
Creates a Text node given the specified string.
Attempt to create an XML reader from a system property.
Attempt to create an XML reader from a class name.

D

Declare a Namespace prefix.
 
deleteData(int, int) - Method in interface org.w3c.dom.CharacterData
Remove a range of 16-bit units from the node.
Document - interface org.w3c.dom.Document.
The Document interface represents the entire HTML or XML document.
DOCUMENT_FRAGMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a DocumentFragment.
DOCUMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Document.
DOCUMENT_TYPE_NODE - Static variable in interface org.w3c.dom.Node
The node is a DocumentType.
 
 
DocumentFragment - interface org.w3c.dom.DocumentFragment.
DocumentFragment is a "lightweight" or "minimal" interface, which includes Namespace support.
DocumentType - interface org.w3c.dom.DocumentType.
Each Document has a doctype attribute whose value is either null or a DocumentType object.
DOMException - exception org.w3c.dom.DOMException.
DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impossible to perform (either for logical reasons, because data is lost, or because the implementation has become unstable).
DOMException(short, String) - Constructor for class org.w3c.dom.DOMException
 
DOMImplementation - interface org.w3c.dom.DOMImplementation.
The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
DOMSTRING_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
If the specified range of text does not fit into a DOMString

E

Element - interface org.w3c.dom.Element.
The Element interface represents an element in an HTML or XML document.
ELEMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is an Element.
Report an element type declaration.
Report the end of a CDATA section.
Receive notification of the end of a document.
Deprecated. Receive notification of the end of the document.
Deprecated. Receive notification of the end of a document.
End document event.
Filter an end document event.
Adapt a SAX1 end document event.
Receive notification of the end of the document.
Report the end of DTD declarations.
Deprecated. Receive notification of the end of an element.
Deprecated. Receive notification of the end of an element.
Adapt a SAX1 end element event.
Receive notification of the end of an element.
Adapt a SAX2 end element event.
Filter an end element event.
Receive notification of the end of an element.
Report the end of an entity.
End the scope of a prefix-URI mapping.
Adapt a SAX2 end prefix mapping event.
Filter an end Namespace prefix mapping event.
Receive notification of the end of a Namespace mapping.
Entity - interface org.w3c.dom.Entity.
This interface represents an entity, either parsed or unparsed, in an XML document.
ENTITY_NODE - Static variable in interface org.w3c.dom.Node
The node is an Entity.
ENTITY_REFERENCE_NODE - Static variable in interface org.w3c.dom.Node
The node is an EntityReference.
EntityReference - interface org.w3c.dom.EntityReference.
EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the
Receive notification of a recoverable error.
Deprecated. Receive notification of a recoverable parser error.
Filter an error event.
Receive notification of a recoverable parser error.
Report a parsed external entity declaration.

F

Create a new FactoryConfigurationError with no detail mesage.
Create a new FactoryConfigurationError with a given Exception base cause of the error.
Create a new FactoryConfigurationError with the given Exception base cause and detail message.
Create a new FactoryConfigurationError with the String specified as an error message.
Receive notification of a non-recoverable error.
Deprecated. Report a fatal XML parsing error.
Filter a fatal error event.
Report a fatal XML parsing error.

G

getAttribute(String) - Method in interface org.w3c.dom.Element
Retrieves an attribute value by name.
Allows the user to retrieve specific attributes on the underlying implementation.
getAttributeNode(String) - Method in interface org.w3c.dom.Element
Retrieves an attribute node by name.
getAttributeNodeNS(String, String) - Method in interface org.w3c.dom.Element
Retrieves an Attr node by local name and namespace URI.
getAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Retrieves an attribute value by local name and namespace URI.
getAttributes() - Method in interface org.w3c.dom.Node
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
Get the byte stream for this input source.
Get the character stream for this input source.
getChildNodes() - Method in interface org.w3c.dom.Node
A NodeList that contains all children of this node.
The column number of the end of the text where the exception occurred.
Return the column number where the current document event ends.
Return the saved column number (1-based).
Return the current content handler.
Get the content event handler.
Return the current content handler.
getData() - Method in interface org.w3c.dom.CharacterData
The character data of the node that implements this interface.
getData() - Method in interface org.w3c.dom.ProcessingInstruction
The content of this processing instruction.
Return an enumeration of all prefixes declared in this context.
getDoctype() - Method in interface org.w3c.dom.Document
The Document Type Declaration (see DocumentType) associated with this document.
getDocumentElement() - Method in interface org.w3c.dom.Document
This is a convenience attribute that allows direct access to the child node that is the root element of the document.
Obtain an instance of a DOMImplementation object.
Return the current DTD handler.
Get the current DTD event handler.
Return the current DTD handler.
getElementById(String) - Method in interface org.w3c.dom.Document
Returns the Element whose ID is given by elementId.
getElementsByTagName(String) - Method in interface org.w3c.dom.Element
Returns a NodeList of all descendant Elements with a given tag name, in the order in which they are encountered in a preorder traversal of this Element tree.
getElementsByTagName(String) - Method in interface org.w3c.dom.Document
Returns a NodeList of all the Elements with a given tag name in the order in which they are encountered in a preorder traversal of the Document tree.
getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Element
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of this Element tree.
getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Document
Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of the Document tree.
Get the character encoding for a byte stream or URI.
getEntities() - Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
Return the current entity resolver.
Get the current entity resolver.
Return the current entity resolver.
Return the current error handler.
Get the current error event handler.
Return the current error handler.
Return the actual exception (if any) that caused this exception to be raised.
Return the embedded exception, if any.
Returns the particular property requested for in the underlying
Look up the value of a feature.
Look up the state of a feature.
Check a parser feature.
getFirstChild() - Method in interface org.w3c.dom.Node
The first child of this node.
getImplementation() - Method in interface org.w3c.dom.Document
The DOMImplementation object that handles this document.
Look up the index of an attribute by XML 1.0 qualified name.
Look up an attribute's index by qualified (prefixed) name.
Look up the index of an attribute by Namespace name.
Look up an attribute's index by Namespace name.
getInternalSubset() - Method in interface org.w3c.dom.DocumentType
The internal subset as a string, or null if there is none.
getLastChild() - Method in interface org.w3c.dom.Node
The last child of this node.
getLength() - Method in interface org.w3c.dom.NodeList
The number of nodes in the list.
getLength() - Method in interface org.w3c.dom.CharacterData
The number of 16-bit units that are available through data and the substringData method below.
getLength() - Method in interface org.w3c.dom.NamedNodeMap
The number of nodes in this map.
Return the number of attributes in the list.
Deprecated. Return the number of attributes in this list.
Deprecated. Return the number of attributes in the list.
Return the number of attributes in the list.
The line number of the end of the text where the exception occurred.
Return the line number where the current document event ends.
Return the saved line number (1-based).
getLocalName() - Method in interface org.w3c.dom.Node
Returns the local part of the qualified name of this node.
Look up an attribute's local name by index.
Return an attribute's local name.
Return the message (if any) for this error .
Return a detail message for this exception.
getName() - Method in interface org.w3c.dom.DocumentType
The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
getName() - Method in interface org.w3c.dom.Attr
Returns the name of this attribute.
Deprecated. Return the name of an attribute in this list (by position).
Deprecated. Get the name of an attribute (by position).
getNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by name.
getNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by local name and namespace URI.
getNamespaceURI() - Method in interface org.w3c.dom.Node
The namespace URI of this node, or null if it is unspecified.
getNextSibling() - Method in interface org.w3c.dom.Node
The node immediately following this node.
getNodeName() - Method in interface org.w3c.dom.Node
The name of this node, depending on its type; see the table above.
getNodeType() - Method in interface org.w3c.dom.Node
A code representing the type of the underlying object, as defined above.
getNodeValue() - Method in interface org.w3c.dom.Node
The value of this node, depending on its type; see the table above.
getNotationName() - Method in interface org.w3c.dom.Entity
For unparsed entities, the name of the notation for the entity.
getNotations() - Method in interface org.w3c.dom.DocumentType
A NamedNodeMap containing the notations declared in the DTD.
getOwnerDocument() - Method in interface org.w3c.dom.Node
The Document object associated with this node.
getOwnerElement() - Method in interface org.w3c.dom.Attr
The Element node this attribute is attached to or null if this attribute is not in use.
Get the parent reader.
Get the parent reader.
getParentNode() - Method in interface org.w3c.dom.Node
The parent of this node.
Returns the SAX parser that is encapsultated by the implementation of this class.
getPrefix() - Method in interface org.w3c.dom.Node
The namespace prefix of this node, or null if it is unspecified.
Return one of the prefixes mapped to a Namespace URI.
Return an enumeration of all prefixes currently declared.
Return an enumeration of all prefixes currently declared for a URI.
getPreviousSibling() - Method in interface org.w3c.dom.Node
The node immediately preceding this node.
Returns the particular property requested for in the underlying
Look up the value of a property.
Look up the value of a property.
Get a parser property.
getPublicId() - Method in interface org.w3c.dom.Entity
The public identifier associated with the entity, if specified.
getPublicId() - Method in interface org.w3c.dom.Notation
The public identifier of this notation.
getPublicId() - Method in interface org.w3c.dom.DocumentType
The public identifier of the external subset.
Get the public identifier for this input source.
Get the public identifier of the entity where the exception occurred.
Return the public identifier for the current document event.
Return the saved public identifier.
Look up an attribute's XML 1.0 qualified name by index.
Return an attribute's qualified (prefixed) name.
getSpecified() - Method in interface org.w3c.dom.Attr
If this attribute was explicitly given a value in the original document, this is true; otherwise, it is false.
getSystemId() - Method in interface org.w3c.dom.Entity
The system identifier associated with the entity, if specified.
getSystemId() - Method in interface org.w3c.dom.Notation
The system identifier of this notation.
getSystemId() - Method in interface org.w3c.dom.DocumentType
The system identifier of the external subset.
Get the system identifier for this input source.
Get the system identifier of the entity where the exception occurred.
Return the system identifier for the current document event.
Return the saved system identifier.
getTagName() - Method in interface org.w3c.dom.Element
The name of the element.
getTarget() - Method in interface org.w3c.dom.ProcessingInstruction
The target of this processing instruction.
Look up an attribute's type by index.
Deprecated. Return the type of an attribute in the list (by position).
Deprecated. Get the type of an attribute (by position).
Return an attribute's type by index.
Look up an attribute's type by XML 1.0 qualified name.
Deprecated. Return the type of an attribute in the list (by name).
Deprecated. Get the type of an attribute (by name).
Look up an attribute's type by qualified (prefixed) name.
Look up an attribute's type by Namespace name.
Look up an attribute's type by Namespace-qualified name.
Look up an attribute's Namespace URI by index.
Return an attribute's Namespace URI.
Look up a prefix and get the currently-mapped Namespace URI.
getValue() - Method in interface org.w3c.dom.Attr
On retrieval, the value of the attribute is returned as a string.
Look up an attribute's value by index.
Deprecated. Return the value of an attribute in the list (by position).
Deprecated. Get the value of an attribute (by position).
Return an attribute's value by index.
Look up an attribute's value by XML 1.0 qualified name.
Deprecated. Return the value of an attribute in the list (by name).
Deprecated. Get the value of an attribute (by name).
Look up an attribute's value by qualified (prefixed) name.
Look up an attribute's value by Namespace name.
Look up an attribute's value by Namespace-qualified name. implementation of this class.

H

interface. It has been replaced by the SAX2
Deprecated.  
hasAttribute(String) - Method in interface org.w3c.dom.Element
Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
hasAttributeNS(String, String) - Method in interface org.w3c.dom.Element
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.
hasAttributes() - Method in interface org.w3c.dom.Node
Returns whether this node (if it is an element) has any attributes.
hasChildNodes() - Method in interface org.w3c.dom.Node
Returns whether this node has any children.
hasFeature(String, String) - Method in interface org.w3c.dom.DOMImplementation
Test if the DOM implementation implements a specific feature.
HIERARCHY_REQUEST_ERR - Static variable in class org.w3c.dom.DOMException
If any node is inserted somewhere it doesn't belong

I

Receive notification of ignorable whitespace in element content.
Deprecated. Receive notification of ignorable whitespace in element content.
Deprecated. Receive notification of ignorable whitespace in element content.
Adapt a SAX2 ignorable whitespace event.
Filter an ignorable whitespace event.
Adapt a SAX1 ignorable whitespace event.
Receive notification of ignorable whitespace in element content.
importNode(Node, boolean) - Method in interface org.w3c.dom.Document
Imports a node from another document to this document.
INDEX_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
If index or size is negative, or greater than the allowed value
Zero-argument default constructor.
Create a new input source with a byte stream.
Create a new input source with a character stream.
Create a new input source with a system identifier.
insertBefore(Node, Node) - Method in interface org.w3c.dom.Node
Inserts the node newChild before the existing child node refChild.
insertData(int, String) - Method in interface org.w3c.dom.CharacterData
Insert a string at the specified 16-bit unit offset.
Report an internal entity declaration.
INUSE_ATTRIBUTE_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to add an attribute that is already in use elsewhere
INVALID_ACCESS_ERR - Static variable in class org.w3c.dom.DOMException
If a parameter or an operation is not supported by the underlying object.
INVALID_CHARACTER_ERR - Static variable in class org.w3c.dom.DOMException
If an invalid or illegal character is specified, such as in a name.
INVALID_MODIFICATION_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to modify the type of the underlying object.
INVALID_STATE_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to use an object that is not, or is no longer, usable.
Indicates whether or not the factory is configured to produce parsers which converts CDATA nodes to Text nodes and appends it to the adjacent (if any) Text node.
Indicates whether or not the factory is configured to produce parsers which expand entity reference nodes.
Indicates whether or not the factory is configured to produce parsers which ignores comments.
Indicates whether or not the factory is configured to produce parsers which ignore ignorable whitespace in element content.
Indicates whether or not the factory is configured to produce parsers which are namespace aware.
Indicates whether or not this parser is configured to understand namespaces.
Indicates whether or not the factory is configured to produce parsers which are namespace aware.
Indicates whether or not this parser is configured to understand namespaces.
isSupported(String, String) - Method in interface org.w3c.dom.Node
Tests whether the DOM implementation implements a specific feature and that feature is supported by this node.
Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse.
Indicates whether or not this parser is configured to validate XML documents.
Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse.
Indicates whether or not this parser is configured to validate XML documents.
item(int) - Method in interface org.w3c.dom.NodeList
Returns the indexth item in the collection.
item(int) - Method in interface org.w3c.dom.NamedNodeMap
Returns the indexth item in the map.

J


L

Zero-argument constructor.
Copy constructor.

M

Deprecated. Create a new SAX parser object using the class name provided.

N

NamedNodeMap - interface org.w3c.dom.NamedNodeMap.
Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name.
NAMESPACE_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces.
Create a new Namespace support object.
Obtain a new instance of a DOM Document object to build a DOM tree with. using the currently configured parameters.
Obtain a new instance of a DocumentBuilderFactory.
Obtain a new instance of a SAXParserFactory.
Creates a new instance of a SAXParser using the currently configured factory parameters.
NO_DATA_ALLOWED_ERR - Static variable in class org.w3c.dom.DOMException
If data is specified for a node which does not support data
NO_MODIFICATION_ALLOWED_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to modify an object where modifications are not allowed
Node - interface org.w3c.dom.Node.
The Node interface is the primary datatype for the entire Document Object Model.
NodeList - interface org.w3c.dom.NodeList.
The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.
normalize() - Method in interface org.w3c.dom.Node
Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes.
NOT_FOUND_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to reference a node in a context where it does not exist
NOT_SUPPORTED_ERR - Static variable in class org.w3c.dom.DOMException
If the implementation does not support the requested type of object or operation.
Notation - interface org.w3c.dom.Notation.
This interface represents a notation declared in the DTD.
NOTATION_NODE - Static variable in interface org.w3c.dom.Node
The node is a Notation.
Receive notification of a notation declaration event.
Deprecated. Receive notification of a notation declaration.
Filter a notation declaration event.
Receive notification of a notation declaration.

O


P

Parse the content of the given file as an XML document and return a new DOM Document object.
Parse the content of the file specified as XML using the
Parse the content of the file specified as XML using the
Parse the content of the given input source as an XML document and return a new DOM Document object.
Deprecated. Parse an XML document.
Parse an XML document.
Parse the document.
Parse a document.
Parse an XML document. as XML using the specified as XML using the specified
Parse the content of the given InputStream as an XML document and return a new DOM Document object.
Parse the content of the given InputStream instance as XML using the specified
Parse the content of the given InputStream instance as XML using the specified
Parse the content of the given InputStream
Parse the content of the given InputStream
Parse the content of the given InputStream as an XML document and return a new DOM Document object.
Parse the content of the given URI as an XML document and return a new DOM Document object.
Deprecated. Parse an XML document from a system identifier (URI).
Parse an XML document from a system identifier (URI).
Parse the document.
Parse a document.
Parse an XML document.
Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified
Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified
Construct a new parser adapter.
Construct a new parser adapter.
Create a new ParserConfigurationException with no detail mesage.
Create a new ParserConfigurationException with the String specified as an error message.
Revert to the previous Namespace context.
PROCESSING_INSTRUCTION_NODE - Static variable in interface org.w3c.dom.Node
The node is a ProcessingInstruction.
ProcessingInstruction - interface org.w3c.dom.ProcessingInstruction.
The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information
Receive notification of a processing instruction.
Deprecated. Receive notification of a processing instruction.
Deprecated. Receive notification of a processing instruction.
Adapt a SAX2 processing instruction event.
Filter a processing instruction event.
Adapt a SAX1 processing instruction event.
Receive notification of a processing instruction.
Process a raw XML 1.0 name.
Start a new Namespace context.

R

Remove an attribute from the list.
removeAttribute(String) - Method in interface org.w3c.dom.Element
Removes an attribute by name.
Deprecated. Remove an attribute from the list.
removeAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Removes the specified attribute node.
removeAttributeNS(String, String) - Method in interface org.w3c.dom.Element
Removes an attribute by local name and namespace URI.
removeChild(Node) - Method in interface org.w3c.dom.Node
Removes the child node indicated by oldChild from the list of children, and returns it.
removeNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by name.
removeNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
Removes a node specified by local name and namespace URI.
replaceChild(Node, Node) - Method in interface org.w3c.dom.Node
Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
replaceData(int, int, String) - Method in interface org.w3c.dom.CharacterData
Replace the characters starting at the specified 16-bit unit offset with the specified string.
Reset this Namespace support object for reuse.
Allow the application to resolve external entities.
Deprecated. Resolve an external entity.
Filter an external entity resolution.
Resolve an external entity.

S

Create a new SAXException.
Create a new SAXException wrapping an existing exception.
Create a new SAXException.
Create a new SAXException from an existing exception.
Default constructor.
Construct a new exception with the given message.
Construct a new exception with no message.
Construct a new exception with the given message.
Create a new SAXParseException from a message and a Locator.
Wrap an existing exception in a SAXParseException.
Create a new SAXParseException.
Create a new SAXParseException with an embedded exception.
 
 
Set an attribute in the list.
Allows the user to set specific attributes on the underlying implementation.
setAttribute(String, String) - Method in interface org.w3c.dom.Element
Adds a new attribute.
Deprecated. Set the attribute list, discarding previous contents.
setAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Adds a new attribute node.
setAttributeNodeNS(Attr) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeNS(String, String, String) - Method in interface org.w3c.dom.Element
Adds a new attribute.
Copy an entire Attributes object.
Set the byte stream for this input source.
Set the character stream for this input source.
Specifies that the parser produced by this code will convert CDATA nodes to Text nodes and append it to the adjacent (if any) text node.
Set the column number for this locator (1-based).
Allow an application to register a content event handler.
Set the content event handler.
Set the content handler.
setData(String) - Method in interface org.w3c.dom.CharacterData
The character data of the node that implements this interface.
setData(String) - Method in interface org.w3c.dom.ProcessingInstruction
The content of this processing instruction.
Deprecated. Allow an application to register a document event handler.
Register the SAX1 document event handler.
Receive an object for locating the origin of SAX document events.
Deprecated. Receive a Locator object for document events.
Deprecated. Receive an object for locating the origin of SAX document events.
Set a document locator.
Filter a new document locator event.
Adapt a SAX1 document locator event.
Receive a Locator object for document events.
Deprecated. Allow an application to register a DTD event handler.
Allow an application to register a DTD event handler.
Register the DTD event handler.
Set the DTD event handler.
Set the DTD handler.
Set the character encoding, if known. entities present in the XML document to be parsed.
Deprecated. Allow an application to register a custom entity resolver.
Allow an application to register an entity resolver.
Register the entity resolver.
Set the entity resolver.
Set the entity resolver. errors present in the XML document to be parsed.
Deprecated. Allow an application to register an error event handler.
Allow an application to register an error event handler.
Register the error event handler.
Set the error event handler.
Set the error handler.
Specifies that the parser produced by this code will expand entity reference nodes.
Sets the particular feature in the underlying implementation of
Set the state of a feature.
Set the state of a feature.
Set a feature for the parser.
Specifies that the parser produced by this code will ignore comments.
Specifies that the parsers created by this factory must eliminate whitespace in element content (sometimes known loosely as 'ignorable whitespace') when parsing XML documents (see XML Rec 2.10).
Set the line number for this locator (1-based).
Deprecated. Allow an application to request a locale for errors and warnings.
Set the locale for error reporting.
Set the local name of a specific attribute.
setNamedItem(Node) - Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its nodeName attribute.
setNamedItemNS(Node) - Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its namespaceURI and localName.
Specifies that the parser produced by this code will provide support for XML namespaces.
Specifies that the parser produced by this code will provide support for XML namespaces.
setNodeValue(String) - Method in interface org.w3c.dom.Node
The value of this node, depending on its type; see the table above.
Set the parent reader.
Set the parent reader.
setPrefix(String) - Method in interface org.w3c.dom.Node
The namespace prefix of this node, or null if it is unspecified.
Sets the particular property in the underlying implementation of
Set the value of a property.
Set the value of a property.
Set a parser property.
Set the public identifier for this input source.
Set the public identifier for this locator.
Set the qualified name of a specific attribute.
Set the system identifier for this input source.
Set the system identifier for this locator.
Set the type of a specific attribute.
Set the Namespace URI of a specific attribute.
Specifies that the parser produced by this code will validate documents as they are parsed.
Specifies that the parser produced by this code will validate documents as they are parsed.
Set the value of a specific attribute.
setValue(String) - Method in interface org.w3c.dom.Attr
On retrieval, the value of the attribute is returned as a string.
Receive notification of a skipped entity.
Adapt a SAX2 skipped entity event.
Filter a skipped entity event.
Receive notification of a skipped entity.
splitText(int) - Method in interface org.w3c.dom.Text
Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings.
Report the start of a CDATA section.
Receive notification of the beginning of a document.
Deprecated. Receive notification of the beginning of the document.
Deprecated. Receive notification of the beginning of a document.
Start document event.
Filter a start document event.
Adapt a SAX1 start document event.
Receive notification of the beginning of the document.
Report the start of DTD declarations, if any.
Deprecated. Receive notification of the start of an element.
Deprecated. Receive notification of the beginning of an element.
Adapt a SAX1 startElement event.
Receive notification of the beginning of an element.
Adapt a SAX2 start element event.
Filter a start element event.
Receive notification of the start of an element.
Report the beginning of some internal and external XML entities.
Begin the scope of a prefix-URI Namespace mapping.
Adapt a SAX2 start prefix mapping event.
Filter a start Namespace prefix mapping event.
Receive notification of the start of a Namespace mapping.
substringData(int, int) - Method in interface org.w3c.dom.CharacterData
Extracts a range of data from the node.
SYNTAX_ERR - Static variable in class org.w3c.dom.DOMException
If an invalid or illegal string is specified.

T

Text - interface org.w3c.dom.Text.
The Text interface inherits from CharacterData and represents the textual content (termed character data in XML) of an Element or Attr.
TEXT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Text node.
Override toString to pick up any embedded exception.

U

Receive notification of an unparsed entity declaration event.
Deprecated. Receive notification of an unparsed entity declaration.
Filter an unparsed entity declaration event.
Receive notification of an unparsed entity declaration.

W

Receive notification of a warning.
Deprecated. Receive notification of a parser warning.
Filter a warning event.
Receive notification of a parser warning.
WRONG_DOCUMENT_ERR - Static variable in class org.w3c.dom.DOMException
If a node is used in a different document than the one that created it (that doesn't support it)

X

Construct an empty XML filter, with no parent.
Construct an XML filter with the specified parent.
The XML Namespace as a constant.
Create a new adapter.
Create a new adapter.
A C D E F G H I J L M N O P R S T U W X