Uses of Class
nu.xom.ParsingException

Packages that use ParsingException
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.xinclude nu.xom.xinclude contains a few classes designed to support XInclude processing of XOM documents and elements. 
 

Uses of ParsingException in nu.xom
 

Subclasses of ParsingException in nu.xom
 class ValidityException
           A ValidityException is thrown to report a validity error in a document being parsed.
 

Methods in nu.xom that throw ParsingException
 Document Builder.build(java.lang.String systemID)
           Parses the document at the specified URL.
 Document Builder.build(java.io.InputStream in)
           Reads the document from an input stream.
 Document Builder.build(java.io.InputStream in, java.lang.String baseURI)
           Reads the document from an input stream while allowing a base URI to be specified.
 Document Builder.build(java.io.File in)
           Reads the document from a file.
 Document Builder.build(java.io.Reader in)
           Reads the document from a reader.
 Document Builder.build(java.io.Reader in, java.lang.String baseURI)
           Reads the document from an input stream while allowing a base URI to be specified.
 Document Builder.build(java.lang.String document, java.lang.String baseURI)
           Reads the document from the contents of a String.
 

Uses of ParsingException in nu.xom.xinclude
 

Methods in nu.xom.xinclude that throw ParsingException
static Document XIncluder.resolve(Document in)
           Returns a copy of the argument Document in which all xinclude:include elements have been replaced by their referenced content.
static Document XIncluder.resolve(Document in, Builder builder)
           Returns a copy of the argument Document in which all xinclude:include elements have been replaced by their referenced content.
static void XIncluder.resolveInPlace(Document in)
           Modifies a Document by replacing all xinclude:include elements by their referenced content.
static void XIncluder.resolveInPlace(Document in, Builder builder)
           Modifies a Document by replacing all xinclude:include elements with their referenced content.
 



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