Uses of Class

nu.xom.Nodes

Packages that use Nodes
nu.xom nu.xom is 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.converters contains classes that convert XOM documents to other models such as SAX and DOM. 
nu.xom.xslt nu.xom.xslt connects XOM documents to TrAX-based XSLT processors. 
 

Uses of Nodes in nu.xom
 

Methods in nu.xom that return Nodes
 NodesNodeFactory.finishMakingElement(Element element)

           Signals the end of an element.
 NodesNodeFactory.makeAttribute(String name, String URI, String value, Attribute.Type type)

           Returns a new Nodes object containing an attribute in the specified namespace with the specified name and type.
 NodesNodeFactory.makeComment(String data)

           Returns a new Nodes object containing a comment with the specified text.
 NodesNodeFactory.makeDocType(String rootElementName, String publicID, String systemID)

           Returns a new Nodes object containing a DocType object with the specified root element name, system ID, and public ID.
 NodesNodeFactory.makeText(String data)

           Returns a new Nodes object containing a text node with the specified content.
 NodesNodeFactory.makeProcessingInstruction(String target, String data)

           Returns a new Nodes object containing a new ProcessingInstruction object with the specified target and data.
 NodesElement.removeChildren()

           Detaches all children from this node.
 

Uses of Nodes in nu.xom.converters
 

Methods in nu.xom.converters that return Nodes
static NodesDOMConverter.convert(org.w3c.dom.DocumentFragment fragment)

           Translates a DOM org.w3c.dom.DocumentFragment object into an equivalent nu.xom.Nodes object.
 

Methods in nu.xom.converters with parameters of type Nodes
 voidSAXConverter.convert(Nodes nodes)

           Converts a Nodes list into SAX by firing events into the registered handlers.
 

Uses of Nodes in nu.xom.xslt
 

Methods in nu.xom.xslt that return Nodes
 NodesXSLTransform.transform(Document in)

           Creates a new Nodes from the input Document by applying this object's stylesheet.
 NodesXSLTransform.transform(Nodes in)

           Creates a new Nodes object from the input Nodes object by applying this object's stylesheet.
 

Methods in nu.xom.xslt with parameters of type Nodes
 NodesXSLTransform.transform(Nodes in)

           Creates a new Nodes object from the input Nodes object by applying this object's stylesheet.
static DocumentXSLTransform.toDocument(Nodes nodes)

           Builds a Document object from a Nodes object.
 



Copyright 2002-2005 Elliotte Rusty Harold

elharo@metalab.unc.edu