Uses of Class
nu.xom.DocType
-
Packages that use DocType Package Description nu.xom nu.xomis the core package of XOM that contains all the basic classes representing the different kinds of nodes: elements, attributes, comments, text nodes, and so forth.nu.xom.converters nu.xom.converterscontains classes that convert XOM documents to other models such as SAX and DOM.nu.xom.tests nu.xom.testscontains the JUnit based test suite for XOM. -
-
Uses of DocType in nu.xom
Methods in nu.xom that return DocType Modifier and Type Method Description DocTypeDocument. getDocType()Returns this document's document type declaration, or null if it doesn't have one.Methods in nu.xom with parameters of type DocType Modifier and Type Method Description voidDocument. setDocType(DocType doctype)Sets this document's document type declaration.protected voidSerializer. write(DocType doctype)Writes aDocTypeobject onto the output stream using the current options.Constructors in nu.xom with parameters of type DocType Constructor Description DocType(DocType doctype)Creates a newDocTypethat's a copy of its argument. -
Uses of DocType in nu.xom.converters
Methods in nu.xom.converters that return DocType Modifier and Type Method Description static DocTypeDOMConverter. convert(org.w3c.dom.DocumentType doctype)Translates a DOMorg.w3c.dom.DocumentTypeobject into an equivalentnu.xom.DocTypeobject. -
Uses of DocType in nu.xom.tests
Methods in nu.xom.tests with parameters of type DocType Modifier and Type Method Description static voidXOMTestCase. assertEquals(java.lang.String message, DocType expected, DocType actual)Asserts that twoDocTypenodes are equal.static voidXOMTestCase. assertEquals(DocType expected, DocType actual)Asserts that twoDocTypenodes are equal.
-