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 DocTypeDefaultJDOMFactory. docType(java.lang.String elementName)DocTypeDefaultJDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)DocTypeDefaultJDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)DocTypeJDOMFactory. docType(java.lang.String elementName)This will create theDocTypewith the specified element nameDocTypeJDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)This will create theDocTypewith the specified element name and reference to an external DTD.DocTypeJDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)This will create theDocTypewith the specified element name and a reference to an external DTD.DocTypeUncheckedJDOMFactory. docType(java.lang.String elementName)DocTypeUncheckedJDOMFactory. docType(java.lang.String elementName, java.lang.String systemID)DocTypeUncheckedJDOMFactory. docType(java.lang.String elementName, java.lang.String publicID, java.lang.String systemID)DocTypeDocument. getDocType()DocTypeDocType. setElementName(java.lang.String elementName)This will set the root element name declared by this DOCTYPE declaration.DocTypeDocType. setPublicID(java.lang.String publicID)This will set the public ID of an externally referenced DTD.DocTypeDocType. 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 DocumentDefaultJDOMFactory. document(Element rootElement, DocType docType)DocumentDefaultJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)DocumentJDOMFactory. document(Element rootElement, DocType docType)DocumentJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)DocumentUncheckedJDOMFactory. document(Element rootElement, DocType docType)DocumentUncheckedJDOMFactory. document(Element rootElement, DocType docType, java.lang.String baseURI)DocumentDocument. setDocType(DocType docType)This will set thedeclaration for thisDocTypeDocument.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.DocumentAbstractDOMAdapter. createDocument(DocType doctype)This creates an emptyDocumentobject based on a specific parser implementation with the given DOCTYPE.org.w3c.dom.DocumentDOMAdapter. createDocument(DocType doctype)This creates an emptyDocumentobject 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 voidXMLOutputter. output(DocType doctype, java.io.OutputStream out)Print out the.DocTypevoidXMLOutputter. output(DocType doctype, java.io.Writer out)Print out the.DocTypejava.lang.StringXMLOutputter. outputString(DocType doctype)Return a string representing a DocType.protected voidXMLOutputter. printDocType(java.io.Writer out, DocType docType)This handle printing the DOCTYPE declaration if one exists.
-