Uses of Class
nu.xom.Text
-
Packages that use Text 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 Text in nu.xom
Methods in nu.xom that return Text Modifier and Type Method Description TextText. copy()Returns a deep copy of thisTextwith no parent, that can be added to this document or a different one.Methods in nu.xom with parameters of type Text Modifier and Type Method Description protected voidSerializer. write(Text text)Writes aTextobject onto the output stream using the current options.Constructors in nu.xom with parameters of type Text Constructor Description Text(Text text)Creates a copy of the specifiedTextobject. -
Uses of Text in nu.xom.converters
Methods in nu.xom.converters that return Text Modifier and Type Method Description static TextDOMConverter. convert(org.w3c.dom.Text text)Translates a DOMorg.w3c.dom.Textobject into an equivalentnu.xom.Text. -
Uses of Text in nu.xom.tests
Methods in nu.xom.tests with parameters of type Text Modifier and Type Method Description static voidXOMTestCase. assertEquals(java.lang.String message, Text expected, Text actual)Asserts that two text nodes are equal.static voidXOMTestCase. assertEquals(Text expected, Text actual)Asserts that two text nodes are equal.
-