com.icl.saxon
Class StandardURIResolver
java.lang.Object
   com.icl.saxon.StandardURIResolver
com.icl.saxon.StandardURIResolver
- All Implemented Interfaces: 
- URIResolver
- public class StandardURIResolver- extends java.lang.Object- implements URIResolver
This class provides the service of converting a URI into an InputSource.
 It is used to get stylesheet modules referenced by xsl:import and xsl:include,
 and source documents referenced by the document() function. The standard version
 handles anything that the java URL class will handle.
 You can write a subclass to handle other kinds of URI, e.g. references to things in
 a database.
 
| Method Summary | 
|  Source | resolve(java.lang.String href,
        java.lang.String base)Resolve a URI
 | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
StandardURIResolver
protected StandardURIResolver()
StandardURIResolver
public StandardURIResolver(TransformerFactoryImpl factory)
resolve
public Source resolve(java.lang.String href,
                      java.lang.String base)
               throws TransformerException
- Resolve a URI
 
- 
- Specified by:
- resolvein interface- URIResolver
 
- 
- Parameters:
- href- An href attribute, which may be relative or absolute.
- base- The base URI against which the first argument will be made
 absolute if the absolute URI is required.
- Returns:
- a Source object representing an XML document
- Throws:
- TransformerException- if an error occurs when trying to
 resolve the URI.