FileDocCategorySizeDatePackage
PSVIDOMImplementationImpl.javaAPI DocApache Xerces 3.0.14968Fri Sep 14 20:33:56 BST 2007org.apache.xerces.dom

PSVIDOMImplementationImpl

public class PSVIDOMImplementationImpl extends CoreDOMImplementationImpl
The DOMImplementation class is description of a particular implementation of the Document Object Model. As such its data is static, shared by all instances of this implementation.

The DOM API requires that it be a real object rather than static methods. However, there's nothing that says it can't be a singleton, so that's how I've implemented it.

xerces.internal
version
$Id: PSVIDOMImplementationImpl.java 516291 2007-03-09 04:26:22Z mrglavas $
since
PR-DOM-Level-1-19980818.

Fields Summary
static PSVIDOMImplementationImpl
singleton
Dom implementation singleton.
Constructors Summary
Methods Summary
public org.w3c.dom.DocumentcreateDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, org.w3c.dom.DocumentType doctype)
Introduced in DOM Level 2.

Creates an XML Document object of the specified type with its document element.

param
namespaceURI The namespace URI of the document element to create, or null.
param
qualifiedName The qualified name of the document element to create.
param
doctype The type of document to be created or null.

When doctype is not null, its Node.ownerDocument attribute is set to the document being created.

return
Document A new Document object.
throws
DOMException WRONG_DOCUMENT_ERR: Raised if doctype has already been used with a different document.
since
WD-DOM-Level-2-19990923

    	if (doctype != null && doctype.getOwnerDocument() != null) {
            throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, 
                                   DOMMessageFormatter.formatMessage(
                                   DOMMessageFormatter.XML_DOMAIN, 
					               "WRONG_DOCUMENT_ERR", null));
        }
        DocumentImpl doc = new PSVIDocumentImpl(doctype);
        // If namespaceURI and qualifiedName are null return a Document with no document element.
        if (qualifiedName != null || namespaceURI != null) {
            Element e = doc.createElementNS(namespaceURI, qualifiedName);
            doc.appendChild(e);
        }
        return doc;
    
public static org.w3c.dom.DOMImplementationgetDOMImplementation()
NON-DOM: Obtain and return the single shared object


    //
    // Public methods
    //

             
        
        return singleton;
    
public booleanhasFeature(java.lang.String feature, java.lang.String version)
Test if the DOM implementation supports a specific "feature" -- currently meaning language and level thereof.

param
feature The package name of the feature to test. In Level 1, supported values are "HTML" and "XML" (case-insensitive). At this writing, org.apache.xerces.dom supports only XML.
param
version The version number of the feature being tested. This is interpreted as "Version of the DOM API supported for the specified Feature", and in Level 1 should be "1.0"
return
true iff this implementation is compatable with the specified feature and version.

        return super.hasFeature(feature, version) ||
               feature.equalsIgnoreCase("psvi");