public interface UnparsedTextURIResolver
Modifier and Type | Method and Description |
---|---|
java.io.Reader |
resolve(java.net.URI absoluteURI,
java.lang.String encoding,
Configuration config)
Resolve the URI passed to the XSLT unparsed-text() function, after resolving
against the base URI.
|
java.io.Reader resolve(java.net.URI absoluteURI, java.lang.String encoding, Configuration config) throws XPathException
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.StandardUnparsedTextResolver
and calling super.resolve(...)
.XPathException
- if any failure occursCopyright (c) 2004-2018 Saxonica Limited. All rights reserved.