Uses of Interface org.w3c.dom.DocumentType

Uses in package gnu.xml.libxmlj.dom

Methods with parameter type org.w3c.dom.DocumentType

Document
GnomeDocumentBuilder.createDocument(String namespaceURI, String qualifiedName, DocumentType doctype)

Methods with return type org.w3c.dom.DocumentType

DocumentType
GnomeDocument.createDocumentType(String name, String publicId, String systemId)
DocumentType
GnomeDocumentBuilder.createDocumentType(String qualifiedName, String publicId, String systemId)
DocumentType
The Document Type Declaration (see DocumentType) associated with this document.

Uses in package gnu.xml.libxmlj.util

Classes implementing org.w3c.dom.DocumentType

class
A "standalone" document type, i.e. one that isn't attached to a document node.

Uses in package gnu.xml.dom

Classes implementing org.w3c.dom.DocumentType

class
"DocumentType" implementation (with no extensions for supporting any document typing information).

Methods with parameter type org.w3c.dom.DocumentType

Document
DomImpl.createDocument(String namespaceURI, String rootName, DocumentType doctype)
DOM L2 Creates and returns a Document, populated only with a root element and optionally a document type(if that was provided).

Methods with return type org.w3c.dom.DocumentType

DocumentType
DomImpl.createDocumentType(String rootName, String publicId, String systemId)
DOM L2 Creates and returns a DocumentType, associated with this implementation.
DocumentType
DOM L1 Returns the document's DocumentType, or null.

Uses in package org.w3c.dom

Methods with parameter type org.w3c.dom.DocumentType

Document
DOMImplementation.createDocument(String namespaceURI, String qualifiedName, DocumentType doctype)
Creates a DOM Document object of the specified type with its document element.

Methods with return type org.w3c.dom.DocumentType

DocumentType
DOMImplementation.createDocumentType(String qualifiedName, String publicId, String systemId)
Creates an empty DocumentType node.
DocumentType
The Document Type Declaration (see DocumentType) associated with this document.