XML for Java 2.0.15
A B C D E F G H I K L M N O P R S T U V W X

D

DEBUG - Static variable in class com.ibm.xml.parsers.NonValidatingTXDOMParser
 
DeepNodeListImpl - class com.ibm.xml.dom.DeepNodeListImpl.
This class implements the DOM's NodeList behavior for Element.getElementsByTagName() The DOM describes NodeList as follows: 1) It may represent EITHER nodes scattered through a subtree (when returned by Element.getElementsByTagName), or just the immediate children (when returned by Node.getChildNodes).
DeepNodeListImpl(NodeImpl, String) - Constructor for class com.ibm.xml.dom.DeepNodeListImpl
Constructor.
DEFAULT - Static variable in class com.ibm.xml.framework.AttDef
 
DEFAULT_DOCUMENT_CLASS - Static variable in class com.ibm.xml.parsers.NonValidatingDOMParser
Default programmatic document class.
defaults - Variable in class com.ibm.xml.dom.NamedNodeMapImpl
Default nodes.
DEFERRED - Static variable in class com.ibm.xml.parsers.NonValidatingDOMParser
Represents deferred DOM Node expansion of Node objects and data.
DeferredAttrImpl - class com.ibm.xml.dom.DeferredAttrImpl.
Attribute represents an XML-style attribute of an Element.
DeferredCDATASectionImpl - class com.ibm.xml.dom.DeferredCDATASectionImpl.
XML provides the CDATA markup to allow a region of text in which most of the XML delimiter recognition does not take place.
DeferredCommentImpl - class com.ibm.xml.dom.DeferredCommentImpl.
Represents an XML (or HTML) comment.
DeferredDocumentImpl - class com.ibm.xml.dom.DeferredDocumentImpl.
The Document interface represents the entire HTML or XML document.
DeferredDocumentImpl(ParserState) - Constructor for class com.ibm.xml.dom.DeferredDocumentImpl
NON-DOM: Actually creating a Document is outside the DOM's spec, since it has to operate in terms of a particular implementation.
DeferredDocumentTypeImpl - class com.ibm.xml.dom.DeferredDocumentTypeImpl.
This class represents a Document Type declaraction in the document itself, not a Document Type Definition (DTD).
DeferredElementDefinitionImpl - class com.ibm.xml.dom.DeferredElementDefinitionImpl.
NON-DOM CLASS: Describe one of the Elements (and its associated Attributes) defined in this Document Type.
DeferredElementImpl - class com.ibm.xml.dom.DeferredElementImpl.
Elements represent most of the "markup" and structure of the document.
DeferredEntityImpl - class com.ibm.xml.dom.DeferredEntityImpl.
Entity nodes hold the reference data for an XML Entity -- either parsed or unparsed.
DeferredEntityReferenceImpl - class com.ibm.xml.dom.DeferredEntityReferenceImpl.
EntityReference models the XML &entityname; syntax, when used for entities defined by the DOM.
DeferredNode - interface com.ibm.xml.dom.DeferredNode.
An interface for deferred node object.
DeferredNotationImpl - class com.ibm.xml.dom.DeferredNotationImpl.
Notations are how the Document Type Description (DTD) records hints about the format of an XML "unparsed entity" -- in other words, non-XML data bound to this document type, which some applications may wish to consult when manipulating the document.
DeferredProcessingInstructionImpl - class com.ibm.xml.dom.DeferredProcessingInstructionImpl.
Processing Instructions (PIs) permit documents to carry processor-specific information alongside their actual content.
DeferredTextImpl - class com.ibm.xml.dom.DeferredTextImpl.
Text nodes hold the non-markup, non-Entity content of an Element or Attribute.
deleteData(int, int) - Method in class com.ibm.xml.dom.CharacterDataImpl
Remove a range of characters from the node's value.
deleteData(int, int) - Method in interface org.w3c.dom.CharacterData
Remove a range of characters from the node.
docElement - Variable in class com.ibm.xml.dom.DocumentImpl
Document element.
docType - Variable in class com.ibm.xml.dom.DocumentImpl
Document type.
doctypeDecl(int) - Method in class com.ibm.xml.parsers.NonValidatingTXDOMParser
This function will be called when a <!DOCTYPE...> declaration is encountered.
doctypeDecl(int) - Method in class com.ibm.xml.parsers.NonValidatingDOMParser
This function will be called when a <!DOCTYPE...> declaration is encountered.
doctypeDecl(int) - Method in class com.ibm.xml.parsers.SAXParser
This function will be called when a <!DOCTYPE...> declaration is encountered.
doctypeDecl(int) - Method in class com.ibm.xml.parsers.NonValidatingParser
This function will be called when a <!DOCTYPE...> declaration is encountered.
doctypeDecl(int) - Method in interface com.ibm.xml.framework.XMLDocumentTypeHandler
This function will be called when a <!DOCTYPE...> declaration is encountered.
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.
DocumentFragmentImpl - class com.ibm.xml.dom.DocumentFragmentImpl.
DocumentFragment is a "lightweight" or "minimal" Document object.
DocumentFragmentImpl() - Constructor for class com.ibm.xml.dom.DocumentFragmentImpl
Constructor for serialization.
DocumentFragmentImpl(DocumentImpl) - Constructor for class com.ibm.xml.dom.DocumentFragmentImpl
Factory constructor.
DocumentHandler - interface org.xml.sax.DocumentHandler.
Receive notification of general document events.
DocumentImpl - class com.ibm.xml.dom.DocumentImpl.
The Document interface represents the entire HTML or XML document.
DocumentImpl() - Constructor for class com.ibm.xml.dom.DocumentImpl
NON-DOM: Actually creating a Document is outside the DOM's spec, since it has to operate in terms of a particular implementation.
DocumentType - interface org.w3c.dom.DocumentType.
Each Document has a doctype attribute whose value is either null or a DocumentType object.
DocumentTypeImpl - class com.ibm.xml.dom.DocumentTypeImpl.
This class represents a Document Type declaraction in the document itself, not a Document Type Definition (DTD).
DocumentTypeImpl(DocumentImpl, String) - Constructor for class com.ibm.xml.dom.DocumentTypeImpl
Factory method for creating a document type node.
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
 
DOMExceptionImpl - exception com.ibm.xml.dom.DOMExceptionImpl.
DOMExceptions are thrown when one of the DOM implementation classes discovers an error condition.
DOMExceptionImpl(short, String) - Constructor for class com.ibm.xml.dom.DOMExceptionImpl
Constructs a dom exception.
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.
DOMImplementationImpl - class com.ibm.xml.dom.DOMImplementationImpl.
The DOMImplementation class is description of a particular implementation of the Document Object Model.
DOMImplementationImpl() - Constructor for class com.ibm.xml.dom.DOMImplementationImpl
 
DOMParser - class com.ibm.xml.parsers.DOMParser.
 
DOMParser() - Constructor for class com.ibm.xml.parsers.DOMParser
 
DOMSTRING_SIZE_ERR - Static variable in class org.w3c.dom.DOMException
 
DTDHandler - interface org.xml.sax.DTDHandler.
Receive notification of basic DTD-related events.

XML for Java 2.0.15
A B C D E F G H I K L M N O P R S T U V W X