Uses of Class
org.jdom.DocType
-
Packages that use DocType Package Description org.jdom Classes to represent the components of an XML document.org.jdom.adapters Classes to interface with various DOM implementations.org.jdom.output Classes to output JDOM documents to various destinations. -
-
Uses of DocType in org.jdom
Methods in org.jdom that return DocType Modifier and Type Method Description DocType
DefaultJDOMFactory. docType(java.lang.String elementName)
DocType
DefaultJDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)
DocType
DefaultJDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)
DocType
JDOMFactory. docType(java.lang.String elementName)
This will create theDocType
with the specified element nameDocType
JDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)
This will create theDocType
with the specified element name and reference to an external DTD.DocType
JDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)
This will create theDocType
with the specified element name and a reference to an external DTD.DocType
UncheckedJDOMFactory. docType(java.lang.String elementName)
DocType
UncheckedJDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)
DocType
UncheckedJDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)
DocType
Document. getDocType()
DocType
DocType. setElementName(java.lang.String elementName)
This will set the root element name declared by this DOCTYPE declaration.DocType
DocType. setPublicID(java.lang.String publicID)
This will set the public ID of an externally referenced DTD.DocType
DocType. setSystemID(java.lang.String systemID)
This will set the system ID of an externally referenced DTD.Methods in org.jdom with parameters of type DocType Modifier and Type Method Description Document
DefaultJDOMFactory. document(Element rootElement, DocType docType)
Document
DefaultJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)
Document
JDOMFactory. document(Element rootElement, DocType docType)
Document
JDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)
Document
UncheckedJDOMFactory. document(Element rootElement, DocType docType)
Document
UncheckedJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)
Document
Document. setDocType(DocType docType)
This will set the
declaration for thisDocType
Document
.Constructors in org.jdom with parameters of type DocType Constructor Description Document(Element rootElement, DocType docType)
Document(Element rootElement, DocType docType, java.lang.String baseURI)
-
Uses of DocType in org.jdom.adapters
Methods in org.jdom.adapters with parameters of type DocType Modifier and Type Method Description org.w3c.dom.Document
AbstractDOMAdapter. createDocument(DocType doctype)
This creates an emptyDocument
object based on a specific parser implementation with the given DOCTYPE.org.w3c.dom.Document
DOMAdapter. createDocument(DocType doctype)
This creates an emptyDocument
object based on a specific parser implementation with the given DOCTYPE. -
Uses of DocType in org.jdom.output
Methods in org.jdom.output with parameters of type DocType Modifier and Type Method Description void
XMLOutputter. output(DocType doctype, java.io.OutputStream out)
Print out the
.DocType
void
XMLOutputter. output(DocType doctype, java.io.Writer out)
Print out the
.DocType
java.lang.String
XMLOutputter. outputString(DocType doctype)
Return a string representing a DocType.protected void
XMLOutputter. printDocType(java.io.Writer out, DocType docType)
This handle printing the DOCTYPE declaration if one exists.
-