Package org.zkoss.idom.impl
Class DOMImplementation
- java.lang.Object
-
- org.zkoss.idom.impl.DOMImplementation
-
- All Implemented Interfaces:
org.w3c.dom.DOMImplementation
public class DOMImplementation extends java.lang.Object implements org.w3c.dom.DOMImplementationThe iDOM's implementation of DOMImplementation.- Author:
- tomyeh
-
-
Field Summary
Fields Modifier and Type Field Description static DOMImplementationTHEDOM implementation singleton.
-
Constructor Summary
Constructors Modifier Constructor Description protectedDOMImplementation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.w3c.dom.DocumentcreateDocument(java.lang.String nsURI, java.lang.String tname, org.w3c.dom.DocumentType docType)org.w3c.dom.DocumentTypecreateDocumentType(java.lang.String tname, java.lang.String publicId, java.lang.String systemId)java.lang.ObjectgetFeature(java.lang.String feature, java.lang.String version)booleanhasFeature(java.lang.String feature, java.lang.String version)
-
-
-
Field Detail
-
THE
public static final DOMImplementation THE
DOM implementation singleton.
-
-
Method Detail
-
hasFeature
public boolean hasFeature(java.lang.String feature, java.lang.String version)- Specified by:
hasFeaturein interfaceorg.w3c.dom.DOMImplementation
-
createDocumentType
public org.w3c.dom.DocumentType createDocumentType(java.lang.String tname, java.lang.String publicId, java.lang.String systemId)- Specified by:
createDocumentTypein interfaceorg.w3c.dom.DOMImplementation
-
createDocument
public org.w3c.dom.Document createDocument(java.lang.String nsURI, java.lang.String tname, org.w3c.dom.DocumentType docType)- Specified by:
createDocumentin interfaceorg.w3c.dom.DOMImplementation
-
getFeature
public java.lang.Object getFeature(java.lang.String feature, java.lang.String version)- Specified by:
getFeaturein interfaceorg.w3c.dom.DOMImplementation
-
-