net.sf.saxon.trans
Interface UnparsedTextURIResolver
- Serializable
- StandardUnparsedTextResolver
public interface UnparsedTextURIResolver
extends Serializable
An UnparsedTextURIResolver accepts an absolute URI and optionally an encoding name as input,
and returns a Reader as its result.
Reader | resolve(URI absoluteURI, String encoding, Configuration config) - Resolve the URI passed to the XSLT unparsed-text() function, after resolving
against the base URI.
|
resolve
public Reader resolve(URI absoluteURI,
String encoding,
Configuration config)
throws XPathException
Resolve the URI passed to the XSLT unparsed-text() function, after resolving
against the base URI.
Note that a user-written resolver is responsible for enforcing some of the rules in the
XSLT specification, such as the rules for inferring an encoding when none is supplied. Saxon
will not report any error if the resolver does this in a non-conformant way.
absoluteURI
- the absolute URI obtained by resolving the supplied
URI against the base URIencoding
- the encoding requested in the call of unparsed-text(), if any. Otherwise null.config
- The Saxon configuration. Provided in case the URI resolver
needs it.
- a Reader, which Saxon will use to read the unparsed text. After the text has been read,
the close() method of the Reader will be called.