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.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
 Nodes NodeFactory.finishMakingElement(Element element)
           The Builder calls this method to signal the end of an element.
 Nodes NodeFactory.makeAttribute(java.lang.String name, java.lang.String URI, java.lang.String value, Attribute.Type type)
           Returns a new Nodes object containing an Attribute in the specified namespace with the specified name and type.
 Nodes NodeFactory.makeComment(java.lang.String data)
           Returns a new Nodes object containing a Comment with the specified text.
 Nodes NodeFactory.makeDocType(java.lang.String rootElementName, java.lang.String publicID, java.lang.String systemID)
           Returns a new Nodes object containing a DocType with the specified root element name, system ID, and public ID.
 Nodes NodeFactory.makeText(java.lang.String data)
           Returns a new Nodes object containing a Text node with the specified content.
 Nodes NodeFactory.makeProcessingInstruction(java.lang.String target, java.lang.String data)
           Returns a new Nodes object containing a new ProcessingInstruction with the specified target and data.
 

Uses of Nodes in nu.xom.xslt
 

Methods in nu.xom.xslt that return Nodes
 Nodes XSLTransform.transform(Document in)
           This will create a new Nodes from the input Document by applying this object's stylesheet.
 Nodes XSLTransform.transform(Nodes in)
           This will create a new Nodes from the input Nodes by applying this object's stylesheet.
 

Methods in nu.xom.xslt with parameters of type Nodes
 Nodes XSLTransform.transform(Nodes in)
           This will create a new Nodes from the input Nodes by applying this object's stylesheet.
 



Copyright 2002-2004 Elliotte Rusty Harold
elharo@metalab.unc.edu