A C D E F G H I L M N O P R S T U V 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.
attlist - Variable in class com.ibm.xml.sax.NamespaceAdapter
 
Attr - interface org.w3c.dom.Attr.
The Attr interface represents an attribute in an Element object.Typically the allowable values for the attribute are defined in a documenttype definition.
ATTRIBUTE_NODE - Static variable in interface org.w3c.dom.Node
 
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
 
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 com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
characters(char[], int, int) - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
characters(char[], int, int) - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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.
charBuffer - Variable in class com.ibm.xml.sax.DigestFilter
 
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.
cloneNode(Document, Node) - Static method in class com.ibm.dom.util.DOMDuplicator
Clone a Node over documents including child nodes.
code - Variable in class org.w3c.dom.DOMException
 
com.ibm.dom.util - package com.ibm.dom.util
 
com.ibm.xml.sax - package com.ibm.xml.sax
 
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
 
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.
createExpandedName(Node, Node) - Static method in class com.ibm.dom.util.Digest
 
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.
Digest - class com.ibm.dom.util.Digest.
 
DigestFilter - class com.ibm.xml.sax.DigestFilter.
 
DigestFilter() - Constructor for class com.ibm.xml.sax.DigestFilter
Creates a DigestFilter instance.
DigestFilter(MessageDigest) - Constructor for class com.ibm.xml.sax.DigestFilter
Creates a DigestFilter instance in `enable' mode.
DigestFilter(NamespaceDocumentHandler) - Constructor for class com.ibm.xml.sax.DigestFilter
Creates a DigestFilter instance.
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
 
DOCUMENT_NODE - Static variable in interface org.w3c.dom.Node
 
DOCUMENT_TYPE_NODE - Static variable in interface org.w3c.dom.Node
 
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.
DOMDuplicator - class com.ibm.dom.util.DOMDuplicator.
This class will be removed after W3C DOM Level 2 is published.
DOMDuplicator() - Constructor for class com.ibm.dom.util.DOMDuplicator
 
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
 
DTDHandler - interface org.xml.sax.DTDHandler.
Receive notification of basic DTD-related events.
dx - Variable in class com.ibm.dom.util.PrintNodeTreeVisitor
 

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
 
elementStack - Variable in class com.ibm.xml.sax.NamespaceAdapter
 
elementStack - Variable in class com.ibm.xml.sax.DigestFilter
 
enable - Variable in class com.ibm.xml.sax.DigestFilter
 
enable(MessageDigest) - Method in class com.ibm.xml.sax.DigestFilter
Starts digest calculation.
encoding - Variable in class com.ibm.dom.util.ToXMLVisitor
 
endDocument() - Method in class com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
endDocument() - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
endDocument() - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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 com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
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.
endElement(String, String, String, String) - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
endElement(String, String, String, String) - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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
 
ENTITY_REFERENCE_NODE - Static variable in interface org.w3c.dom.Node
 
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 com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
error(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a recoverable error.
error(SAXParseException) - Method in class org.xml.sax.HandlerBase
Receive notification of a recoverable parser error.
errorHandler - Variable in class com.ibm.xml.sax.NamespaceAdapter
 
ErrorHandler - interface org.xml.sax.ErrorHandler.
Basic interface for SAX error handlers.
escapedWrite(Writer, String, String) - Method in class com.ibm.dom.util.ToXMLVisitor
Writes the specified string to specified Writer after substituting &, <, >, , and UTF-16 surrogates for the set of entitiy references (&amp;, &lt;, &gt;) and numeric character references (&#...) respectively.
escapedWrite(Writer, String, String, String) - Method in class com.ibm.dom.util.ToXMLVisitor
Returns the specified string after substituting specials, and UTF-16 surrogates for chracter references &#xnn.

F

fatalError(SAXParseException) - Method in class com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
fatalError(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a non-recoverable error.
fatalError(SAXParseException) - Method in class org.xml.sax.HandlerBase
Report a fatal XML parsing 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
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise.
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
A NodeList that contains all children of this node.
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
The content of this processing instruction.
getData() - Method in interface org.w3c.dom.CharacterData
The character data of the node that implements this interface.
getDigest() - Method in class com.ibm.xml.sax.DigestFilter
Returns a digest value.
getDigest(MessageDigest, Attr, Element) - Static method in class com.ibm.dom.util.Digest
 
getDigest(MessageDigest, Node) - Static method in class com.ibm.dom.util.Digest
 
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.
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
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
getException() - Method in class org.xml.sax.SAXException
Return the embedded exception, if any.
getFirstChild() - Method in interface org.w3c.dom.Node
The first child of this node.
getFirstWithoutReference(Node) - Static method in class com.ibm.dom.util.Digest
 
getImplementation() - Method in interface org.w3c.dom.Document
The DOMImplementation object that handles this document.
getLastChild() - Method in interface org.w3c.dom.Node
The last child of this node.
getLastWithoutReference(Node) - Static method in class com.ibm.dom.util.Digest
 
getLength() - Method in interface org.w3c.dom.NamedNodeMap
The number of nodes in the map.
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 characters that are available through data and the substringData method below.
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).
getLocalPart(int) - Method in interface com.ibm.xml.sax.NamespaceAttributeList
Returns a local part of an attribute.
getMessage() - Method in class org.xml.sax.SAXException
Return a detail message for this exception.
getName() - Method in interface org.w3c.dom.Attr
Returns the name of this attribute.
getName() - Method in interface org.w3c.dom.DocumentType
The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
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.
getNamespace(int) - Method in interface com.ibm.xml.sax.NamespaceAttributeList
Returns a namespace URI of an attribute.
getNamespaceForPrefix(String, Node) - Static method in class com.ibm.dom.util.Digest
Returns a namespace URI for specified prefix.
getNextSibling() - Method in interface org.w3c.dom.Node
The node immediately following this node.
getNextWithoutReference(Node) - Static method in class com.ibm.dom.util.Digest
 
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.
getParentNode() - Method in interface org.w3c.dom.Node
The parent of this node.
getPrefix(int) - Method in interface com.ibm.xml.sax.NamespaceAttributeList
Returns a prefix name of an attribute.
getPreviousSibling() - Method in interface org.w3c.dom.Node
The node immediately preceding this node.
getPreviousWithoutReference(Node) - Static method in class com.ibm.dom.util.Digest
 
getPrintNonSpecifiedAttributes() - Method in class com.ibm.dom.util.ToXMLVisitor
Returns whether this prints non-specified default attributes appended by DTD.
getPublicId() - Method in interface org.w3c.dom.Notation
The public identifier of this notation.
getPublicId() - Method in interface org.w3c.dom.Entity
The public identifier associated with the entity, if specified.
getPublicId() - Method in class org.xml.sax.InputSource
Get the public identifier for this input source.
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.helpers.LocatorImpl
Return the saved public identifier.
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.Notation
The system identifier of this notation.
getSystemId() - Method in interface org.w3c.dom.Entity
The system identifier associated with the entity, if specified.
getSystemId() - Method in class org.xml.sax.InputSource
Get the system identifier for this input source.
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.helpers.LocatorImpl
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.
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
On retrieval, the value of the attribute is returned as a string.
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

handler - Variable in class com.ibm.xml.sax.NamespaceAdapter
 
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.
heapSort(String[], int) - Static method in class com.ibm.xml.sax.DigestFilter
Sort String array.
HIERARCHY_REQUEST_ERR - Static variable in class org.w3c.dom.DOMException
 

I

ignorableWhitespace(char[], int, int) - Method in class com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
ignorableWhitespace(char[], int, int) - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
ignorableWhitespace(char[], int, int) - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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.
indent - Variable in class com.ibm.dom.util.PrintNodeTreeVisitor
 
indent() - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
INDEX_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
 
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
 
INVALID_CHARACTER_ERR - Static variable in class org.w3c.dom.DOMException
 
isPrintNonSpecifiedAttributes - Variable in class com.ibm.dom.util.ToXMLVisitor
 
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.

L

lastLocator - Variable in class com.ibm.xml.sax.NamespaceAdapter
 
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
Private null constructor.
makeParser(String) - Static method in class org.xml.sax.helpers.ParserFactory
Create a new SAX parser object using the class name provided.
messageDigest - Variable in class com.ibm.xml.sax.DigestFilter
 

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.
NamespaceAdapter - class com.ibm.xml.sax.NamespaceAdapter.
 
NamespaceAdapter() - Constructor for class com.ibm.xml.sax.NamespaceAdapter
 
NamespaceAdapter(Parser) - Constructor for class com.ibm.xml.sax.NamespaceAdapter
 
NamespaceAdapter(String) - Constructor for class com.ibm.xml.sax.NamespaceAdapter
 
NamespaceAttributeList - interface com.ibm.xml.sax.NamespaceAttributeList.
 
NamespaceDocumentHandler - interface com.ibm.xml.sax.NamespaceDocumentHandler.
 
next - Variable in class com.ibm.xml.sax.DigestFilter
 
NO_DATA_ALLOWED_ERR - Static variable in class org.w3c.dom.DOMException
 
NO_MODIFICATION_ALLOWED_ERR - Static variable in class org.w3c.dom.DOMException
 
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.
NOOPVisitor - class com.ibm.dom.util.NOOPVisitor.
How to use: Node node = ...
NOOPVisitor() - Constructor for class com.ibm.dom.util.NOOPVisitor
 
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.
normalize(Node) - Static method in class com.ibm.dom.util.Normalizer
Normalize specified node and its descendants.
Normalizer - class com.ibm.dom.util.Normalizer.
 
Normalizer() - Constructor for class com.ibm.dom.util.Normalizer
 
NOT_FOUND_ERR - Static variable in class org.w3c.dom.DOMException
 
NOT_SUPPORTED_ERR - Static variable in class org.w3c.dom.DOMException
 
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
 
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
 
org.xml.sax - package org.xml.sax
 
org.xml.sax.helpers - package org.xml.sax.helpers
 

P

parse(InputSource) - Method in class com.ibm.xml.sax.NamespaceAdapter
 
parse(InputSource) - Method in interface org.xml.sax.Parser
Parse an XML document.
parse(String) - Method in class com.ibm.xml.sax.NamespaceAdapter
 
parse(String) - Method in interface org.xml.sax.Parser
Parse an XML document from a system identifier (URI).
parser - Variable in class com.ibm.xml.sax.NamespaceAdapter
 
Parser - interface org.xml.sax.Parser.
Basic interface for SAX (Simple API for XML) parsers.
ParserFactory - class org.xml.sax.helpers.ParserFactory.
Java-specific class for dynamically loading SAX parsers.
ParserFactory() - Constructor for class org.xml.sax.helpers.ParserFactory
 
printByteArray(byte[]) - Static method in class com.ibm.xml.sax.DigestFilter
 
printByteArray(Writer, byte[]) - Static method in class com.ibm.xml.sax.DigestFilter
 
PrintNodeTreeVisitor - class com.ibm.dom.util.PrintNodeTreeVisitor.
 
PrintNodeTreeVisitor(Writer) - Constructor for class com.ibm.dom.util.PrintNodeTreeVisitor
 
printText(String) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
PROCESSING_INSTRUCTION_NODE - Static variable in interface org.w3c.dom.Node
 
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 com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
processingInstruction(String, String) - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
processingInstruction(String, String) - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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 class org.xml.sax.HandlerBase
Resolve an external entity.
resolveEntity(String, String) - Method in interface org.xml.sax.EntityResolver
Allow the application to resolve external entities.
result - Variable in class com.ibm.xml.sax.DigestFilter
 

S

S_XMLNAMESPACEURI - Static variable in class com.ibm.dom.util.Digest
 
S_XMLNS - Static variable in class com.ibm.dom.util.Digest
 
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.
searchForNamespace(String) - Method in class com.ibm.xml.sax.NamespaceAdapter
 
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
 
setData(String) - Method in interface org.w3c.dom.CharacterData
 
setDocumentHandler(DocumentHandler) - Method in interface org.xml.sax.Parser
Allow an application to register a document event handler.
setDocumentHandler(NamespaceDocumentHandler) - Method in class com.ibm.xml.sax.NamespaceAdapter
 
setDocumentLocator(Locator) - Method in class com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
setDocumentLocator(Locator) - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
setDocumentLocator(Locator) - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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 class com.ibm.xml.sax.NamespaceAdapter
 
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 class com.ibm.xml.sax.NamespaceAdapter
 
setEntityResolver(EntityResolver) - Method in interface org.xml.sax.Parser
Allow an application to register a custom entity resolver.
setErrorHandler(ErrorHandler) - Method in class com.ibm.xml.sax.NamespaceAdapter
 
setErrorHandler(ErrorHandler) - Method in interface org.xml.sax.Parser
Allow an application to register an error event handler.
setLineNumber(int) - Method in class org.xml.sax.helpers.LocatorImpl
Set the line number for this locator (1-based).
setLocale(Locale) - Method in class com.ibm.xml.sax.NamespaceAdapter
 
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.
setNextDocumentHandler(NamespaceDocumentHandler) - Method in class com.ibm.xml.sax.DigestFilter
 
setNodeValue(String) - Method in interface org.w3c.dom.Node
 
setPrintNonSpecifiedAttributes(boolean) - Method in class com.ibm.dom.util.ToXMLVisitor
Sets whether this prints non-specified default attributes appended by DTD.
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.
setValue(String) - Method in interface org.w3c.dom.Attr
 
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 com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
startDocument() - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
startDocument() - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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 com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
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.
startElement(String, String, String, String, NamespaceAttributeList) - Method in interface com.ibm.xml.sax.NamespaceDocumentHandler
 
startElement(String, String, String, String, NamespaceAttributeList) - Method in class com.ibm.xml.sax.DigestFilter
Applications must not call this method.
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
 
toString() - Method in class org.xml.sax.SAXException
Convert this exception to a string.
ToXMLVisitor - class com.ibm.dom.util.ToXMLVisitor.
 
ToXMLVisitor(Writer) - Constructor for class com.ibm.dom.util.ToXMLVisitor
Constructor for default encoding.
ToXMLVisitor(Writer, String) - Constructor for class com.ibm.dom.util.ToXMLVisitor
Constructor for customized encoding.
traverse(Node) - Method in class com.ibm.dom.util.NOOPVisitor
 
traverse(Node) - Method in class com.ibm.dom.util.TreeTraversal
Traverses the document object tree at the specified startNode.
TreeTraversal - class com.ibm.dom.util.TreeTraversal.
 
TreeTraversal.EndTraversalException - exception com.ibm.dom.util.TreeTraversal.EndTraversalException.
XML4J tree traversal exception which signals from a Visitor to the tree traversal algorithm that all further traversal should be ended because the visit on the document object hierarchy has been successfully completed.
TreeTraversal.EndTraversalException() - Constructor for class com.ibm.dom.util.TreeTraversal.EndTraversalException
Constructor for exception with no detail message.
TreeTraversal.EndTraversalException(String) - Constructor for class com.ibm.dom.util.TreeTraversal.EndTraversalException
Constructor for exception with detail message.
TreeTraversal.ToNextSiblingTraversalException - exception com.ibm.dom.util.TreeTraversal.ToNextSiblingTraversalException.
XML4J tree traversal exception which signals from a Visitor to the tree traversal algorithm that further traversal of the current Node's children should be ended because the visit on this portion of thee document object hierarchy has been successfully completed.
TreeTraversal.ToNextSiblingTraversalException() - Constructor for class com.ibm.dom.util.TreeTraversal.ToNextSiblingTraversalException
Constructor for exception with no detail message.
TreeTraversal.ToNextSiblingTraversalException(String) - Constructor for class com.ibm.dom.util.TreeTraversal.ToNextSiblingTraversalException
Constructor for exception with detail message.
TreeTraversal(Visitor) - Constructor for class com.ibm.dom.util.TreeTraversal
 

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.

V

visitAttributePost(Attr) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitAttributePost(Attr) - Method in interface com.ibm.dom.util.Visitor
 
visitAttributePre(Attr) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitAttributePre(Attr) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified attribute Node in XML format.
visitAttributePre(Attr) - Method in interface com.ibm.dom.util.Visitor
 
visitCDATASectionPost(CDATASection) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitCDATASectionPost(CDATASection) - Method in interface com.ibm.dom.util.Visitor
 
visitCDATASectionPre(CDATASection) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitCDATASectionPre(CDATASection) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified cdata Node in XML format.
visitCDATASectionPre(CDATASection) - Method in interface com.ibm.dom.util.Visitor
 
visitCDATASectionPre(CDATASection) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitCommentPost(Comment) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitCommentPost(Comment) - Method in interface com.ibm.dom.util.Visitor
 
visitCommentPre(Comment) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitCommentPre(Comment) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified comment Node in XML format.
visitCommentPre(Comment) - Method in interface com.ibm.dom.util.Visitor
 
visitCommentPre(Comment) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitDocumentFragmentPost(DocumentFragment) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitDocumentFragmentPost(DocumentFragment) - Method in interface com.ibm.dom.util.Visitor
 
visitDocumentFragmentPre(DocumentFragment) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitDocumentFragmentPre(DocumentFragment) - Method in interface com.ibm.dom.util.Visitor
 
visitDocumentFragmentPre(DocumentFragment) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitDocumentPost(Document) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitDocumentPost(Document) - Method in class com.ibm.dom.util.ToXMLVisitor
Flush the writer.
visitDocumentPost(Document) - Method in interface com.ibm.dom.util.Visitor
 
visitDocumentPost(Document) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitDocumentPre(Document) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitDocumentPre(Document) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified document Node in XML format.
visitDocumentPre(Document) - Method in interface com.ibm.dom.util.Visitor
 
visitDocumentPre(Document) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitDocumentTypePost(DocumentType) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitDocumentTypePost(DocumentType) - Method in interface com.ibm.dom.util.Visitor
 
visitDocumentTypePre(DocumentType) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitDocumentTypePre(DocumentType) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified doctype Node in XML format.
visitDocumentTypePre(DocumentType) - Method in interface com.ibm.dom.util.Visitor
 
visitDocumentTypePre(DocumentType) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitElementPost(Element) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitElementPost(Element) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the end of the specified element Node in XML format.
visitElementPost(Element) - Method in interface com.ibm.dom.util.Visitor
 
visitElementPost(Element) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitElementPre(Element) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitElementPre(Element) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the start of the specified element Node and its associated attributes in XML format.
visitElementPre(Element) - Method in interface com.ibm.dom.util.Visitor
 
visitElementPre(Element) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitEntityPost(Entity) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitEntityPost(Entity) - Method in interface com.ibm.dom.util.Visitor
 
visitEntityPre(Entity) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitEntityPre(Entity) - Method in interface com.ibm.dom.util.Visitor
 
visitEntityPre(Entity) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitEntityReference(EntityReference) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified ref Node in XML format.
visitEntityReferencePost(EntityReference) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitEntityReferencePost(EntityReference) - Method in interface com.ibm.dom.util.Visitor
 
visitEntityReferencePre(EntityReference) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitEntityReferencePre(EntityReference) - Method in interface com.ibm.dom.util.Visitor
 
visitEntityReferencePre(EntityReference) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitNotationPost(Notation) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitNotationPost(Notation) - Method in interface com.ibm.dom.util.Visitor
 
visitNotationPre(Notation) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitNotationPre(Notation) - Method in interface com.ibm.dom.util.Visitor
 
visitNotationPre(Notation) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
Visitor - interface com.ibm.dom.util.Visitor.
Node node = ...
visitProcessingInstructionPost(ProcessingInstruction) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitProcessingInstructionPost(ProcessingInstruction) - Method in interface com.ibm.dom.util.Visitor
 
visitProcessingInstructionPre(ProcessingInstruction) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitProcessingInstructionPre(ProcessingInstruction) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified pi Node in XML format.
visitProcessingInstructionPre(ProcessingInstruction) - Method in interface com.ibm.dom.util.Visitor
 
visitProcessingInstructionPre(ProcessingInstruction) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitTextPost(Text) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitTextPost(Text) - Method in interface com.ibm.dom.util.Visitor
 
visitTextPre(Text) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitTextPre(Text) - Method in class com.ibm.dom.util.ToXMLVisitor
Creates a string representation of the specified text Node in XML format.
visitTextPre(Text) - Method in interface com.ibm.dom.util.Visitor
 
visitTextPre(Text) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 
visitUnknownPost(Node) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitUnknownPost(Node) - Method in interface com.ibm.dom.util.Visitor
 
visitUnknownPre(Node) - Method in class com.ibm.dom.util.NOOPVisitor
 
visitUnknownPre(Node) - Method in interface com.ibm.dom.util.Visitor
 
visitUnknownPre(Node) - Method in class com.ibm.dom.util.PrintNodeTreeVisitor
 

W

warning(SAXParseException) - Method in class com.ibm.xml.sax.NamespaceAdapter
Applications must not call this method.
warning(SAXParseException) - Method in interface org.xml.sax.ErrorHandler
Receive notification of a warning.
warning(SAXParseException) - Method in class org.xml.sax.HandlerBase
Receive notification of a parser warning.
writer - Variable in class com.ibm.dom.util.ToXMLVisitor
 
writer - Variable in class com.ibm.dom.util.PrintNodeTreeVisitor
 
WRONG_DOCUMENT_ERR - Static variable in class org.w3c.dom.DOMException
 

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