Uses of Class

nu.xom.Document

Packages that use Document
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.canonical nu.xom.canonical supports the output of Canonical XML from XOM by writing Document objects onto an OutputStream
nu.xom.converters nu.xom.converters contains classes that convert XOM documents to other models such as SAX and DOM. 
nu.xom.tests nu.xom.tests contains the JUnit based test suite for XOM. 
nu.xom.xinclude nu.xom.xinclude supports XInclude processing of XOM documents and elements. 
nu.xom.xslt nu.xom.xslt connects XOM documents to TrAX-based XSLT processors. 
 

Uses of Document in nu.xom
 

Methods in nu.xom that return Document
 DocumentValidityException.getDocument()

           Returns a Document object for the document that caused this exception.
 DocumentNodeFactory.startMakingDocument()

           Creates a new Document object.
 DocumentNode.getDocument()

           Returns the document that contains this node, or null if this node is not currently part of a document.
 DocumentBuilder.build(String systemID)

           Parses the document at the specified URL.
 DocumentBuilder.build(InputStream in)

           Reads the document from an input stream.
 DocumentBuilder.build(InputStream in, String baseURI)

           Reads the document from an input stream while specifying a base URI (which need not be the stream's actual URI).
 DocumentBuilder.build(File in)

           Reads the document from a file.
 DocumentBuilder.build(Reader in)

           Reads the document from a reader.
 DocumentBuilder.build(Reader in, String baseURI)

           Reads the document from a character stream while specifying a base URI.
 DocumentBuilder.build(String document, String baseURI)

           Reads the document from the contents of a string.
 

Methods in nu.xom with parameters of type Document
 voidSerializer.write(Document doc)

           Serializes a document onto the output stream using the current options.
 voidNodeFactory.finishMakingDocument(Document document)

           Signals the end of a document.
 

Constructors in nu.xom with parameters of type Document
Document(Document doc)

           Creates a copy of this document.
 

Uses of Document in nu.xom.canonical
 

Methods in nu.xom.canonical with parameters of type Document
 voidCanonicalizer.write(Document doc)

           Serializes a document onto the output stream using the canonical XML algorithm.
 

Uses of Document in nu.xom.converters
 

Methods in nu.xom.converters that return Document
static DocumentDOMConverter.convert(org.w3c.dom.Document domDocument)

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

Methods in nu.xom.converters with parameters of type Document
 voidSAXConverter.convert(Document doc)

           Feed a document through this converter.
static org.w3c.dom.DocumentDOMConverter.convert(Document document, org.w3c.dom.DOMImplementation impl)

           Translates a XOM nu.xom.Document object into an equivalent org.w3c.dom.Document object.
 

Uses of Document in nu.xom.tests
 

Methods in nu.xom.tests with parameters of type Document
static voidXOMTestCase.assertEquals(Document expected, Document actual)

           Asserts that two document nodes are equal.
static voidXOMTestCase.assertEquals(String message, Document expected, Document actual)

           Asserts that two document nodes are equal.
 

Uses of Document in nu.xom.xinclude
 

Methods in nu.xom.xinclude that return Document
static DocumentXIncluder.resolve(Document in)

           Returns a copy of the document in which all xinclude:include elements have been replaced by their referenced content.
static DocumentXIncluder.resolve(Document in, Builder builder)

           Returns a copy of the document in which all xinclude:include elements have been replaced by their referenced content as loaded by the builder.
 

Methods in nu.xom.xinclude with parameters of type Document
static DocumentXIncluder.resolve(Document in)

           Returns a copy of the document in which all xinclude:include elements have been replaced by their referenced content.
static DocumentXIncluder.resolve(Document in, Builder builder)

           Returns a copy of the document in which all xinclude:include elements have been replaced by their referenced content as loaded by the builder.
static voidXIncluder.resolveInPlace(Document in)

           Modifies a document by replacing all xinclude:include elements by their referenced content.
static voidXIncluder.resolveInPlace(Document in, Builder builder)

           Modifies a document by replacing all xinclude:include elements with their referenced content as loaded by the builder.
 

Uses of Document in nu.xom.xslt
 

Methods in nu.xom.xslt that return Document
static DocumentXSLTransform.toDocument(Nodes nodes)

           Builds a Document object from a Nodes object.
 

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

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

Constructors in nu.xom.xslt with parameters of type Document
XSLTransform(Document stylesheet)

           Creates a new XSLTransform by reading the stylesheet from the supplied document.
XSLTransform(Document stylesheet, NodeFactory factory)

           Creates a new XSLTransform by reading the stylesheet from the supplied document.
 



Copyright 2002-2005 Elliotte Rusty Harold

elharo@metalab.unc.edu