public class XDBDomImplementation extends java.lang.Object implements DOMImplementation
| Constructor and Description |
|---|
XDBDomImplementation()
Deprecated.
|
XDBDomImplementation(java.sql.Connection conn)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
Document |
createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
Deprecated.
create and return an empty document object and return it.
|
DocumentType |
createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
Deprecated.
create and return a document type defn. object and return it.
|
java.lang.Object |
getFeature(java.lang.String feature, java.lang.String version)
Deprecated.
|
boolean |
hasFeature(java.lang.String feature, java.lang.String version)
Deprecated.
test if a particular feature is supported by the given version.
|
public XDBDomImplementation()
public XDBDomImplementation(java.sql.Connection conn)
public boolean hasFeature(java.lang.String feature,
java.lang.String version)
hasFeature in interface DOMImplementationfeature - the name of the feature to test.version - the version of the DOM implementationpublic DocumentType createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId) throws DOMException
createDocumentType in interface DOMImplementationDOMException - INVALID_CHARACTER_ERR: Raised if the specified qualified name contains an illegal character.qualifiedName is malformed.public Document createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype) throws DOMException
createDocument in interface DOMImplementationnamespaceURI - the top level namespace of the document.qualifiedname - the QNAME of the top level element of the documentdoctype - the DTD if any to be used for this document.DOMException
public java.lang.Object getFeature(java.lang.String feature,
java.lang.String version)