public class PSVIDocumentImpl extends DocumentImpl
eventListeners, iteratorReferenceQueue, iterators, mutationEvents, rangeReferenceQueue, rangesactualEncoding, allowGrammarAccess, changes, docElement, docType, encoding, errorChecking, fDocumentURI, identifiers, standalone, userData, version, xmlVersionChangedfirstChild, fNodeListCache, ownerDocumentnextSibling, previousSiblingDOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_IS_CONTAINED, DOCUMENT_POSITION_PRECEDING, ELEMENT_DEFINITION_NODE, FIRSTCHILD, flags, HASSTRING, ID, IGNORABLEWS, NORMALIZED, OWNED, ownerNode, READONLY, SPECIFIED, SYNCCHILDREN, SYNCDATA, TREE_POSITION_ANCESTOR, TREE_POSITION_DESCENDANT, TREE_POSITION_DISCONNECTED, TREE_POSITION_EQUIVALENT, TREE_POSITION_FOLLOWING, TREE_POSITION_PRECEDING, TREE_POSITION_SAME_NODEATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE| Constructor and Description | 
|---|
| PSVIDocumentImpl()Create a document. | 
| PSVIDocumentImpl(org.w3c.dom.DocumentType doctype)For DOM2 support. | 
| Modifier and Type | Method and Description | 
|---|---|
| org.w3c.dom.Node | cloneNode(boolean deep)Deep-clone a document, including fixing ownerDoc for the cloned
 children. | 
| org.w3c.dom.Attr | createAttributeNS(java.lang.String namespaceURI,
                 java.lang.String qualifiedName)Create an attribute with PSVI information | 
| org.w3c.dom.Attr | createAttributeNS(java.lang.String namespaceURI,
                 java.lang.String qualifiedName,
                 java.lang.String localName)Create an attribute with PSVI information | 
| org.w3c.dom.Element | createElementNS(java.lang.String namespaceURI,
               java.lang.String qualifiedName)Create an element with PSVI information | 
| org.w3c.dom.Element | createElementNS(java.lang.String namespaceURI,
               java.lang.String qualifiedName,
               java.lang.String localpart)Create an element with PSVI information | 
| org.w3c.dom.DOMConfiguration | getDomConfig()The configuration used when  Document.normalizeDocumentis 
 invoked. | 
| org.w3c.dom.DOMImplementation | getImplementation()Retrieve information describing the abilities of this particular
 DOM implementation. | 
addEventListener, copyEventListeners, createEvent, createNodeIterator, createNodeIterator, createRange, createTreeWalker, createTreeWalker, dispatchAggregateEvents, dispatchAggregateEvents, dispatchEvent, dispatchEventToSubtree, dispatchingEventToSubtree, getEventListeners, removeEventListener, saveEnclosingAttr, setEventListenersabort, adoptNode, callUserDataHandlers, canRenameElements, changed, changes, checkDOMNSErr, checkNamespaceWF, checkQName, clearIdentifiers, clone, cloneNode, createAttribute, createCDATASection, createComment, createDocumentFragment, createDocumentType, createElement, createElementDefinition, createEntity, createEntityReference, createNotation, createProcessingInstruction, createTextNode, getAsync, getBaseURI, getDoctype, getDocumentElement, getDocumentURI, getElementById, getElementsByTagName, getElementsByTagNameNS, getEncoding, getErrorChecking, getFeature, getIdentifier, getIdentifiers, getInputEncoding, getNodeName, getNodeNumber, getNodeNumber, getNodeType, getOwnerDocument, getStandalone, getStrictErrorChecking, getTextContent, getUserData, getUserData, getUserDataRecord, getVersion, getXmlEncoding, getXmlStandalone, getXmlVersion, importNode, insertBefore, isKidOK, isValidQName, isXMLName, load, loadXML, normalizeDocument, putIdentifier, removeChild, removeIdentifier, renameNode, replaceChild, saveXML, setAsync, setDocumentURI, setEncoding, setErrorChecking, setInputEncoding, setStandalone, setStrictErrorChecking, setTextContent, setUserData, setUserData, setVersion, setXmlEncoding, setXmlStandalone, setXmlVersion, undeferChildrengetChildNodes, getChildNodesUnoptimized, getFirstChild, getLastChild, getLength, hasChildNodes, isEqualNode, item, normalize, setOwnerDocument, setReadOnly, synchronizeChildrengetNextSibling, getParentNode, getPreviousSiblingaddEventListener, appendChild, compareDocumentPosition, compareTreePosition, dispatchEvent, getAttributes, getContainer, getLocalName, getNamespaceURI, getNodeValue, getPrefix, getReadOnly, getUserData, getUserData, getUserDataRecord, hasAttributes, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, needsSyncChildren, removeEventListener, setNodeValue, setPrefix, setUserData, setUserData, synchronizeData, toStringequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitappendChild, compareDocumentPosition, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeValue, getParentNode, getPrefix, getPreviousSibling, getUserData, hasAttributes, hasChildNodes, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, setNodeValue, setPrefix, setUserDatapublic PSVIDocumentImpl()
public PSVIDocumentImpl(org.w3c.dom.DocumentType doctype)
public org.w3c.dom.Node cloneNode(boolean deep)
cloneNode in interface org.w3c.dom.NodecloneNode in class DocumentImpldeep - boolean, iff true replicate children
 Example: Cloning a Text node will copy both the node and the text it
 contains.
 
 Example: Cloning something that has children -- Element or Attr, for
 example -- will _not_ clone those children unless a "deep clone"
 has been requested. A shallow clone of an Attr node will yield an
 empty Attr of the same name.
 
 NOTE: Clones will always be read/write, even if the node being cloned
 is read-only, to permit applications using only the DOM API to obtain
 editable copies of locked portions of the tree.
public org.w3c.dom.DOMImplementation getImplementation()
getImplementation in interface org.w3c.dom.DocumentgetImplementation in class DocumentImplpublic org.w3c.dom.Element createElementNS(java.lang.String namespaceURI,
                                  java.lang.String qualifiedName)
                                    throws org.w3c.dom.DOMException
createElementNS in interface org.w3c.dom.DocumentcreateElementNS in class CoreDocumentImplnamespaceURI - The namespace URI of the element to
                     create.qualifiedName - The qualified name of the element type to
                      instantiate.org.w3c.dom.DOMException - INVALID_CHARACTER_ERR: Raised if the specified
 name contains an invalid character.public org.w3c.dom.Element createElementNS(java.lang.String namespaceURI,
                                  java.lang.String qualifiedName,
                                  java.lang.String localpart)
                                    throws org.w3c.dom.DOMException
createElementNS in class CoreDocumentImplnamespaceURI - The namespace URI of the element to
                     create.qualifiedName - The qualified name of the element type to
                      instantiate.localpart - The local name of the attribute to instantiate.org.w3c.dom.DOMException - INVALID_CHARACTER_ERR: Raised if the specified
                   name contains an invalid character.public org.w3c.dom.Attr createAttributeNS(java.lang.String namespaceURI,
                                 java.lang.String qualifiedName)
                                   throws org.w3c.dom.DOMException
createAttributeNS in interface org.w3c.dom.DocumentcreateAttributeNS in class CoreDocumentImplnamespaceURI - The namespace URI of the attribute to
                      create. When it is null or an empty string,
                      this method behaves like createAttribute.qualifiedName - The qualified name of the attribute to
                      instantiate.org.w3c.dom.DOMException - INVALID_CHARACTER_ERR: Raised if the specified
 name contains an invalid character.public org.w3c.dom.Attr createAttributeNS(java.lang.String namespaceURI,
                                 java.lang.String qualifiedName,
                                 java.lang.String localName)
                                   throws org.w3c.dom.DOMException
createAttributeNS in class CoreDocumentImplnamespaceURI - The namespace URI of the attribute to
                      create. When it is null or an empty string,
                      this method behaves like createAttribute.qualifiedName - The qualified name of the attribute to
                      instantiate.localName - The local name of the attribute to instantiate.org.w3c.dom.DOMException - INVALID_CHARACTER_ERR: Raised if the specified
 name contains an invalid character.public org.w3c.dom.DOMConfiguration getDomConfig()
Document.normalizeDocument is 
 invoked.getDomConfig in interface org.w3c.dom.DocumentgetDomConfig in class CoreDocumentImplCopyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.