Class GenericDOMImplementation

    • Field Detail

      • DOM_IMPLEMENTATION

        protected static final org.w3c.dom.DOMImplementation DOM_IMPLEMENTATION
        The default instance of this class.
    • Constructor Detail

      • GenericDOMImplementation

        public GenericDOMImplementation()
        Creates a new GenericDOMImplementation object.
    • Method Detail

      • getDOMImplementation

        public static org.w3c.dom.DOMImplementation getDOMImplementation()
        Returns the default instance of this class.
      • createDocument

        public org.w3c.dom.Document createDocument​(java.lang.String namespaceURI,
                                                   java.lang.String qualifiedName,
                                                   org.w3c.dom.DocumentType doctype)
                                            throws org.w3c.dom.DOMException
        DOM: Implements DOMImplementation.createDocument(String,String,DocumentType).
        Throws:
        org.w3c.dom.DOMException
      • createDocumentType

        public org.w3c.dom.DocumentType createDocumentType​(java.lang.String qualifiedName,
                                                           java.lang.String publicId,
                                                           java.lang.String systemId)
        DOM: Implements DOMImplementation.createDocumentType(String,String,String).