A C D E F G H I J L M N O P R S T U W

A

addAttribute(String, String, String) - Method in class org.xml.sax.helpers.AttributeListImpl
Add an attribute to an attribute 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.
AttributeList - interface org.xml.sax.AttributeList.
Interface for an element's attribute specifications.
AttributeListImpl - class org.xml.sax.helpers.AttributeListImpl.
Convenience implementation for AttributeList.
AttributeListImpl() - Constructor for class org.xml.sax.helpers.AttributeListImpl
Create an empty attribute list.
AttributeListImpl(AttributeList) - Constructor for class org.xml.sax.helpers.AttributeListImpl
Construct a persistent copy of an existing attribute list.

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 attributes and methods for accessing character data in the DOM.
characters(char[], int, int) - Method in class org.xml.sax.HandlerBase
Receive notification of character data inside an element.
characters(char[], int, int) - Method in interface org.xml.sax.DocumentHandler
Receive notification of character data.
clear() - Method in class org.xml.sax.helpers.AttributeListImpl
Clear the attribute list.
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
Indicates the type of error that the DOM implementation is reporting.
Comment - interface org.w3c.dom.Comment.
This 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.
createAttribute(String) - Method in interface org.w3c.dom.Document
Creates an Attr of the given name.
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.
createDocumentFragment() - Method in interface org.w3c.dom.Document
Creates an empty DocumentFragment object.
createElement(String) - Method in interface org.w3c.dom.Document
Creates an element of the type specified.
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.

D

deleteData(int, int) - Method in interface org.w3c.dom.CharacterData
Remove a range of characters 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.
DocumentBuilder - class javax.xml.parsers.DocumentBuilder.
Defines the API to obtain DOM Document instances from an XML document.
DocumentBuilder() - Constructor for class javax.xml.parsers.DocumentBuilder
 
DocumentBuilderFactory - class javax.xml.parsers.DocumentBuilderFactory.
Defines a factory API that enables applications to obtain a parser that produces DOM object trees from XML documents.
DocumentBuilderFactory() - Constructor for class javax.xml.parsers.DocumentBuilderFactory
 
DocumentFragment - interface org.w3c.dom.DocumentFragment.
DocumentFragment is a "lightweight" or "minimal" Document object.
DocumentHandler - interface org.xml.sax.DocumentHandler.
Receive notification of general document events.
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
Constructs an exception with the specified descriptive detail message.
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 String
DTDHandler - interface org.xml.sax.DTDHandler.
Receive notification of basic DTD-related events.

E

Element - interface org.w3c.dom.Element.
By far the vast majority of objects (apart from text) that authors encounter when traversing a document are Element nodes.
ELEMENT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Element.
endDocument() - Method in class org.xml.sax.HandlerBase
Receive notification of the end of the document.
endDocument() - Method in interface org.xml.sax.DocumentHandler
Receive notification of the end of a document.
endElement(String) - Method in class org.xml.sax.HandlerBase
Receive notification of the end of an element.
endElement(String) - Method in interface org.xml.sax.DocumentHandler
Receive notification of the end of an element.
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 user wishes to insert an entity reference.
EntityResolver - interface org.xml.sax.EntityResolver.
Basic interface for resolving entities.
error(SAXParseException) - Method in class org.xml.sax.HandlerBase
Receive notification of a recoverable parser error.
error(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a recoverable error.
ErrorHandler - interface org.xml.sax.ErrorHandler.
Basic interface for SAX error handlers.

F

FactoryConfigurationError - error javax.xml.parsers.FactoryConfigurationError.
Thrown when a problem with configuration with the Parser Factories exists.
FactoryConfigurationError() - Constructor for class javax.xml.parsers.FactoryConfigurationError
Create a new FactoryConfigurationError with no detail mesage.
FactoryConfigurationError(Exception) - Constructor for class javax.xml.parsers.FactoryConfigurationError
Create a new FactoryConfigurationError with a given Exception base cause of the error.
FactoryConfigurationError(Exception, String) - Constructor for class javax.xml.parsers.FactoryConfigurationError
Create a new FactoryConfigurationError with the given Exception base cause and detail message.
FactoryConfigurationError(String) - Constructor for class javax.xml.parsers.FactoryConfigurationError
Create a new FactoryConfigurationError with the String specified as an error message.
fatalError(SAXParseException) - Method in class org.xml.sax.HandlerBase
Report a fatal XML parsing error.
fatalError(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a non-recoverable error.

G

getAttribute(String) - Method in interface org.w3c.dom.Element
Retrieves an attribute value by name.
getAttributeNode(String) - Method in interface org.w3c.dom.Element
Retrieves an Attr node by name.
getAttributes() - Method in interface org.w3c.dom.Node
Returns the value of the attributes property.
getByteStream() - Method in class org.xml.sax.InputSource
Get the byte stream for this input source.
getCharacterStream() - Method in class org.xml.sax.InputSource
Get the character stream for this input source.
getChildNodes() - Method in interface org.w3c.dom.Node
Returns the value of the childNodes property.
getColumnNumber() - Method in interface org.xml.sax.Locator
Return the column number where the current document event ends.
getColumnNumber() - Method in class org.xml.sax.SAXParseException
The column number of the end of the text where the exception occurred.
getColumnNumber() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved column number (1-based).
getData() - Method in interface org.w3c.dom.ProcessingInstruction
Returns the value of the data property.
getData() - Method in interface org.w3c.dom.CharacterData
Returns the value of the data property.
getDoctype() - Method in interface org.w3c.dom.Document
Returns the value of the doctype property.
getDocumentElement() - Method in interface org.w3c.dom.Document
Returns the value of the documentElement property.
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 would be encountered in a preorder traversal of the 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 would be encountered in a preorder traversal of the Document tree.
getEncoding() - Method in class org.xml.sax.InputSource
Get the character encoding for a byte stream or URI.
getEntities() - Method in interface org.w3c.dom.DocumentType
Returns the value of the entities property.
getException() - Method in class org.xml.sax.SAXException
Return the embedded exception, if any.
getException() - Method in class javax.xml.parsers.FactoryConfigurationError
Return the actual exception (if any) that caused this exception to be raised.
getFirstChild() - Method in interface org.w3c.dom.Node
Returns the value of the firstChild property.
getImplementation() - Method in interface org.w3c.dom.Document
Returns the value of the implementation property.
getLastChild() - Method in interface org.w3c.dom.Node
Returns the value of the lastChild property.
getLength() - Method in interface org.w3c.dom.NamedNodeMap
Returns the value of the length property.
getLength() - Method in interface org.w3c.dom.CharacterData
Returns the value of the length property.
getLength() - Method in interface org.w3c.dom.NodeList
Returns the value of the length property.
getLength() - Method in interface org.xml.sax.AttributeList
Return the number of attributes in this list.
getLength() - Method in class org.xml.sax.helpers.AttributeListImpl
Return the number of attributes in the list.
getLineNumber() - Method in interface org.xml.sax.Locator
Return the line number where the current document event ends.
getLineNumber() - Method in class org.xml.sax.SAXParseException
The line number of the end of the text where the exception occurred.
getLineNumber() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved line number (1-based).
getMessage() - Method in class org.xml.sax.SAXException
Return a detail message for this exception.
getMessage() - Method in class javax.xml.parsers.FactoryConfigurationError
Return the message (if any) for this error .
getName() - Method in interface org.w3c.dom.Attr
Returns the value of the name property.
getName() - Method in interface org.w3c.dom.DocumentType
Returns the value of the name property.
getName(int) - Method in interface org.xml.sax.AttributeList
Return the name of an attribute in this list (by position).
getName(int) - Method in class org.xml.sax.helpers.AttributeListImpl
Get the name of an attribute (by position).
getNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
Retrieves a node specified by name.
getNextSibling() - Method in interface org.w3c.dom.Node
Returns the value of the nextSibling property.
getNodeName() - Method in interface org.w3c.dom.Node
Returns the value of the nodeName property.
getNodeType() - Method in interface org.w3c.dom.Node
Returns the value of the nodeType property.
getNodeValue() - Method in interface org.w3c.dom.Node
Returns the value of the nodeValue property.
getNotationName() - Method in interface org.w3c.dom.Entity
Returns the value of the notationName property.
getNotations() - Method in interface org.w3c.dom.DocumentType
Returns the value of the notations property.
getOwnerDocument() - Method in interface org.w3c.dom.Node
Returns the value of the ownerDocument property.
getParentNode() - Method in interface org.w3c.dom.Node
Returns the value of the parentNode property.
getParser() - Method in class javax.xml.parsers.SAXParser
Returns the SAX parser that is encapsultated by the implementation of this class.
getPreviousSibling() - Method in interface org.w3c.dom.Node
Returns the value of the previousSibling property.
getPublicId() - Method in interface org.w3c.dom.Notation
Returns the value of the publicId property.
getPublicId() - Method in interface org.w3c.dom.Entity
Returns the value of the publicId property.
getPublicId() - Method in interface org.xml.sax.Locator
Return the public identifier for the current document event.
getPublicId() - Method in class org.xml.sax.SAXParseException
Get the public identifier of the entity where the exception occurred.
getPublicId() - Method in class org.xml.sax.InputSource
Get the public identifier for this input source.
getPublicId() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved public identifier.
getSpecified() - Method in interface org.w3c.dom.Attr
Returns the value of the specified property.
getSystemId() - Method in interface org.w3c.dom.Notation
Returns the value of the systemId property.
getSystemId() - Method in interface org.w3c.dom.Entity
Returns the value of the systemId property.
getSystemId() - Method in interface org.xml.sax.Locator
Return the system identifier for the current document event.
getSystemId() - Method in class org.xml.sax.SAXParseException
Get the system identifier of the entity where the exception occurred.
getSystemId() - Method in class org.xml.sax.InputSource
Get the system identifier for this input source.
getSystemId() - Method in class org.xml.sax.helpers.LocatorImpl
Return the saved system identifier.
getTagName() - Method in interface org.w3c.dom.Element
Returns the value of the tagName property.
getTarget() - Method in interface org.w3c.dom.ProcessingInstruction
Returns the value of the target property.
getType(int) - Method in interface org.xml.sax.AttributeList
Return the type of an attribute in the list (by position).
getType(int) - Method in class org.xml.sax.helpers.AttributeListImpl
Get the type of an attribute (by position).
getType(String) - Method in interface org.xml.sax.AttributeList
Return the type of an attribute in the list (by name).
getType(String) - Method in class org.xml.sax.helpers.AttributeListImpl
Get the type of an attribute (by name).
getValue() - Method in interface org.w3c.dom.Attr
Returns the value of the value property.
getValue(int) - Method in interface org.xml.sax.AttributeList
Return the value of an attribute in the list (by position).
getValue(int) - Method in class org.xml.sax.helpers.AttributeListImpl
Get the value of an attribute (by position).
getValue(String) - Method in interface org.xml.sax.AttributeList
Return the value of an attribute in the list (by name).
getValue(String) - Method in class org.xml.sax.helpers.AttributeListImpl
Get the value of an attribute (by name).

H

HandlerBase - class org.xml.sax.HandlerBase.
Default base class for handlers.
HandlerBase() - Constructor for class org.xml.sax.HandlerBase
 
hasChildNodes() - Method in interface org.w3c.dom.Node
This is a convenience method to allow easy determination of whether a 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

ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.HandlerBase
Receive notification of ignorable whitespace in element content.
ignorableWhitespace(char[], int, int) - Method in interface org.xml.sax.DocumentHandler
Receive notification of ignorable whitespace in element content.
INDEX_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
If index or size is negative, or greater than the allowed value
InputSource - class org.xml.sax.InputSource.
A single input source for an XML entity.
InputSource() - Constructor for class org.xml.sax.InputSource
Zero-argument default constructor.
InputSource(InputStream) - Constructor for class org.xml.sax.InputSource
Create a new input source with a byte stream.
InputSource(Reader) - Constructor for class org.xml.sax.InputSource
Create a new input source with a character stream.
InputSource(String) - Constructor for class org.xml.sax.InputSource
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 character offset.
INUSE_ATTRIBUTE_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt is made to add an attribute that is already inuse elsewhere
INVALID_CHARACTER_ERR - Static variable in class org.w3c.dom.DOMException
If an invalid character is specified, such as in a name.
isNamespaceAware() - Method in class javax.xml.parsers.SAXParser
Indicates whether or not this parser is configured to understand namespaces.
isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilder
Indicates whether or not this parser is configured to understand namespaces.
isNamespaceAware() - Method in class javax.xml.parsers.SAXParserFactory
Indicates whether or not the factory is configured to produce parsers which are namespace aware.
isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilderFactory
Indicates whether or not the factory is configured to produce parsers which are namespace aware.
isValidating() - Method in class javax.xml.parsers.SAXParser
Indicates whether or not this parser is configured to validate XML documents.
isValidating() - Method in class javax.xml.parsers.DocumentBuilder
Indicates whether or not this parser is configured to validate XML documents.
isValidating() - Method in class javax.xml.parsers.SAXParserFactory
Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse.
isValidating() - Method in class javax.xml.parsers.DocumentBuilderFactory
Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse.
item(int) - Method in interface org.w3c.dom.NamedNodeMap
Returns the indexth item in the map.
item(int) - Method in interface org.w3c.dom.NodeList
Returns the indexth item in the collection.

J

javax.xml.parsers - package javax.xml.parsers
Provides classes allowing the processing of XML documents.

L

Locator - interface org.xml.sax.Locator.
Interface for associating a SAX event with a document location.
LocatorImpl - class org.xml.sax.helpers.LocatorImpl.
Provide an optional convenience implementation of Locator.
LocatorImpl() - Constructor for class org.xml.sax.helpers.LocatorImpl
Zero-argument constructor.
LocatorImpl(Locator) - Constructor for class org.xml.sax.helpers.LocatorImpl
Copy constructor.

M

makeParser() - Static method in class org.xml.sax.helpers.ParserFactory
Create a new SAX parser using the `org.xml.sax.parser' system property.
makeParser(String) - Static method in class org.xml.sax.helpers.ParserFactory
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.
newDocument() - Method in class javax.xml.parsers.DocumentBuilder
Obtain a new instance of a DOM Document object to build a DOM tree with.
newDocumentBuilder() - Method in class javax.xml.parsers.DocumentBuilderFactory
Creates a new instance of a DocumentBuilder using the currently configured parameters.
newInstance() - Static method in class javax.xml.parsers.SAXParserFactory
Obtain a new instance of a SAXParserFactory.
newInstance() - Static method in class javax.xml.parsers.DocumentBuilderFactory
Obtain a new instance of a DocumentBuilderFactory.
newSAXParser() - Method in class javax.xml.parsers.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.Element
Puts all Text nodes in the full depth of the sub-tree underneath this Element into a "normal" form where only markup (e.g., tags, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are no adjacent Text nodes.
NOT_FOUND_ERR - Static variable in class org.w3c.dom.DOMException
If an attempt was 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 type of object requested
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.
notationDecl(String, String, String) - Method in class org.xml.sax.HandlerBase
Receive notification of a notation declaration.
notationDecl(String, String, String) - Method in interface org.xml.sax.DTDHandler
Receive notification of a notation declaration event.

O

org.w3c.dom - package org.w3c.dom
The Document Object Model (DOM™) is a Recommendation of the World Wide Web Consortium, defining programming interfaces for XML (and, optionally, HTML) documents.
org.xml.sax - package org.xml.sax
SAX (Simple API to XML) is an event-driven parser API, which supports most of the widely available XML parsers.
org.xml.sax.helpers - package org.xml.sax.helpers
This package contains simple "helper" classes which can help programmers get started using the SAX APIs.

P

parse(File) - Method in class javax.xml.parsers.DocumentBuilder
Parse the content of the given file as an XML document and return a new DOM Document object.
parse(File, HandlerBase) - Method in class javax.xml.parsers.SAXParser
Parse the content of the file specified as XML using the specified org.xml.sax.HandlerBase.
parse(InputSource) - Method in interface org.xml.sax.Parser
Parse an XML document.
parse(InputSource) - Method in class javax.xml.parsers.DocumentBuilder
Parse the content of the given input source as an XML document and return a new DOM Document object.
parse(InputSource, HandlerBase) - Method in class javax.xml.parsers.SAXParser
Parse the content given org.xml.sax.InputSource as XML using the specified org.xml.sax.HandlerBase.
parse(InputStream) - Method in class javax.xml.parsers.DocumentBuilder
Parse the content of the given InputStream as an XML document and return a new DOM Document object.
parse(InputStream, HandlerBase) - Method in class javax.xml.parsers.SAXParser
Parse the content of the given java.io.InputStream instance as XML using the specified org.xml.sax.HandlerBase.
parse(String) - Method in interface org.xml.sax.Parser
Parse an XML document from a system identifier (URI).
parse(String) - Method in class javax.xml.parsers.DocumentBuilder
Parse the content of the given URI as an XML document and return a new DOM Document object.
parse(String, HandlerBase) - Method in class javax.xml.parsers.SAXParser
Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified org.xml.sax.HandlerBase.
Parser - interface org.xml.sax.Parser.
Basic interface for SAX (Simple API for XML) parsers.
ParserConfigurationException - exception javax.xml.parsers.ParserConfigurationException.
 
ParserConfigurationException() - Constructor for class javax.xml.parsers.ParserConfigurationException
Create a new ParserConfigurationException with no detail mesage.
ParserConfigurationException(String) - Constructor for class javax.xml.parsers.ParserConfigurationException
Create a new ParserConfigurationException with the String specified as an error message.
ParserFactory - class org.xml.sax.helpers.ParserFactory.
Java-specific class for dynamically loading SAX parsers.
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 in the text of the document.
processingInstruction(String, String) - Method in class org.xml.sax.HandlerBase
Receive notification of a processing instruction.
processingInstruction(String, String) - Method in interface org.xml.sax.DocumentHandler
Receive notification of a processing instruction.

R

removeAttribute(String) - Method in interface org.w3c.dom.Element
Removes an attribute by name.
removeAttribute(String) - Method in class org.xml.sax.helpers.AttributeListImpl
Remove an attribute from the list.
removeAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Removes the specified attribute.
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.
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 character offset with the specified string.
resolveEntity(String, String) - Method in interface org.xml.sax.EntityResolver
Allow the application to resolve external entities.
resolveEntity(String, String) - Method in class org.xml.sax.HandlerBase
Resolve an external entity.

S

SAXException - exception org.xml.sax.SAXException.
Encapsulate a general SAX error or warning.
SAXException(Exception) - Constructor for class org.xml.sax.SAXException
Create a new SAXException wrapping an existing exception.
SAXException(String) - Constructor for class org.xml.sax.SAXException
Create a new SAXException.
SAXException(String, Exception) - Constructor for class org.xml.sax.SAXException
Create a new SAXException from an existing exception.
SAXParseException - exception org.xml.sax.SAXParseException.
Encapsulate an XML parse error or warning.
SAXParseException(String, Locator) - Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException from a message and a Locator.
SAXParseException(String, Locator, Exception) - Constructor for class org.xml.sax.SAXParseException
Wrap an existing exception in a SAXParseException.
SAXParseException(String, String, String, int, int) - Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException.
SAXParseException(String, String, String, int, int, Exception) - Constructor for class org.xml.sax.SAXParseException
Create a new SAXParseException with an embedded exception.
SAXParser - class javax.xml.parsers.SAXParser.
Defines the API that wraps an org.xml.sax.Parser implementation class.
SAXParser() - Constructor for class javax.xml.parsers.SAXParser
 
SAXParserFactory - class javax.xml.parsers.SAXParserFactory.
Defines a factory API that enables applications to configure and obtain a SAX based parser to parse XML documents.
SAXParserFactory() - Constructor for class javax.xml.parsers.SAXParserFactory
 
setAttribute(String, String) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setAttributeList(AttributeList) - Method in class org.xml.sax.helpers.AttributeListImpl
Set the attribute list, discarding previous contents.
setAttributeNode(Attr) - Method in interface org.w3c.dom.Element
Adds a new attribute.
setByteStream(InputStream) - Method in class org.xml.sax.InputSource
Set the byte stream for this input source.
setCharacterStream(Reader) - Method in class org.xml.sax.InputSource
Set the character stream for this input source.
setColumnNumber(int) - Method in class org.xml.sax.helpers.LocatorImpl
Set the column number for this locator (1-based).
setData(String) - Method in interface org.w3c.dom.ProcessingInstruction
Assigns the value of the data property.
setData(String) - Method in interface org.w3c.dom.CharacterData
Assigns the value of the data property.
setDocumentHandler(DocumentHandler) - Method in interface org.xml.sax.Parser
Allow an application to register a document event handler.
setDocumentLocator(Locator) - Method in class org.xml.sax.HandlerBase
Receive a Locator object for document events.
setDocumentLocator(Locator) - Method in interface org.xml.sax.DocumentHandler
Receive an object for locating the origin of SAX document events.
setDTDHandler(DTDHandler) - Method in interface org.xml.sax.Parser
Allow an application to register a DTD event handler.
setEncoding(String) - Method in class org.xml.sax.InputSource
Set the character encoding, if known.
setEntityResolver(EntityResolver) - Method in interface org.xml.sax.Parser
Allow an application to register a custom entity resolver.
setEntityResolver(EntityResolver) - Method in class javax.xml.parsers.DocumentBuilder
Specify the EntityResolver to be used to resolve entities present in the XML document to be parsed.
setErrorHandler(ErrorHandler) - Method in interface org.xml.sax.Parser
Allow an application to register an error event handler.
setErrorHandler(ErrorHandler) - Method in class javax.xml.parsers.DocumentBuilder
Specify the ErrorHandler to be used to resolve entities present in the XML document to be parsed.
setLineNumber(int) - Method in class org.xml.sax.helpers.LocatorImpl
Set the line number for this locator (1-based).
setLocale(Locale) - Method in interface org.xml.sax.Parser
Allow an application to request a locale for errors and warnings.
setNamedItem(Node) - Method in interface org.w3c.dom.NamedNodeMap
Adds a node using its nodeName attribute.
setNamespaceAware(boolean) - Method in class javax.xml.parsers.SAXParserFactory
Specifies that the parser produced by this code will provide support for XML namespaces.
setNamespaceAware(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
Specifies that the parser produced by this code will provide support for XML namespaces.
setNodeValue(String) - Method in interface org.w3c.dom.Node
Assigns the value of the nodeValue property.
setPublicId(String) - Method in class org.xml.sax.InputSource
Set the public identifier for this input source.
setPublicId(String) - Method in class org.xml.sax.helpers.LocatorImpl
Set the public identifier for this locator.
setSystemId(String) - Method in class org.xml.sax.InputSource
Set the system identifier for this input source.
setSystemId(String) - Method in class org.xml.sax.helpers.LocatorImpl
Set the system identifier for this locator.
setValidating(boolean) - Method in class javax.xml.parsers.SAXParserFactory
Specifies that the parser produced by this code will validate documents as they are parsed.
setValidating(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
Specifies that the parser produced by this code will validate documents as they are parsed.
setValue(String) - Method in interface org.w3c.dom.Attr
Assigns the value of the value property.
splitText(int) - Method in interface org.w3c.dom.Text
Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
startDocument() - Method in class org.xml.sax.HandlerBase
Receive notification of the beginning of the document.
startDocument() - Method in interface org.xml.sax.DocumentHandler
Receive notification of the beginning of a document.
startElement(String, AttributeList) - Method in class org.xml.sax.HandlerBase
Receive notification of the start of an element.
startElement(String, AttributeList) - Method in interface org.xml.sax.DocumentHandler
Receive notification of the beginning of an element.
substringData(int, int) - Method in interface org.w3c.dom.CharacterData
Extracts a range of data from the node.

T

Text - interface org.w3c.dom.Text.
The Text interface 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.

U

unparsedEntityDecl(String, String, String, String) - Method in class org.xml.sax.HandlerBase
Receive notification of an unparsed entity declaration.
unparsedEntityDecl(String, String, String, String) - Method in interface org.xml.sax.DTDHandler
Receive notification of an unparsed entity declaration event.

W

warning(SAXParseException) - Method in class org.xml.sax.HandlerBase
Receive notification of a parser warning.
warning(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a 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)

A C D E F G H I J L M N O P R S T U W

Submit Feedback to xml-feedback@java.sun.com
Copyright © 1998-2000 Sun Microsystems, Inc. All Rights Reserved.

Sun Microsystems, Inc.
901 San Antonio Road
Palo Alto, California, 94303, U.S.A.