Uses of Class
nu.xom.NodeFactory
-
Packages that use NodeFactory 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.xslt nu.xom.xsltconnects XOM documents to TrAX-based XSLT processors. -
-
Uses of NodeFactory in nu.xom
Methods in nu.xom that return NodeFactory Modifier and Type Method Description NodeFactoryBuilder. getNodeFactory()Returns this builder'sNodeFactory.Constructors in nu.xom with parameters of type NodeFactory Constructor Description Builder(boolean validate, NodeFactory factory)Creates aBuilderbased on an optionally validating parser that builds node objects with the supplied factory.Builder(NodeFactory factory)Creates aBuilderthat uses the specifiedNodeFactoryto create node objects.Builder(org.xml.sax.XMLReader parser, boolean validate, NodeFactory factory)Creates an optionally validatingBuilderthat reads data from the specified parser object and constructs new nodes using the specified factory object. -
Uses of NodeFactory in nu.xom.converters
Methods in nu.xom.converters with parameters of type NodeFactory Modifier and Type Method Description static NodesDOMConverter. convert(org.w3c.dom.DocumentFragment fragment, NodeFactory factory)Translates a DOMorg.w3c.dom.DocumentFragmentobject into an equivalentnu.xom.Nodesobject, converting each DOM node as specified by a factory.static DocumentDOMConverter. convert(org.w3c.dom.Document domDocument, NodeFactory factory)Translates a DOMorg.w3c.dom.Documentobject into an equivalentnu.xom.Documentobject as controlled by a factory. -
Uses of NodeFactory in nu.xom.xslt
Constructors in nu.xom.xslt with parameters of type NodeFactory Constructor Description XSLTransform(Document stylesheet, NodeFactory factory)Creates a newXSLTransformby reading the stylesheet from the supplied document.
-