Package org.exolab.adaptx.jaxp.transform
Class URIResolverWrapper
- java.lang.Object
-
- org.exolab.adaptx.jaxp.transform.URIResolverWrapper
-
- All Implemented Interfaces:
URIResolver
public class URIResolverWrapper extends java.lang.Object implements URIResolver
An Adaptx wrapper for JAXP URIResolver- Version:
- $Revision: 3930 $ $Date: 2003-10-01 10:53:36 +0200 (Wed, 01 Oct 2003) $
- Author:
- Keith Visco
-
-
Constructor Summary
Constructors Constructor Description URIResolverWrapper(javax.xml.transform.URIResolver resolver)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.transform.URIResolver
getResolver()
Returns the "wrapped" URIResolverURILocation
resolve(java.lang.String href, java.lang.String documentBase)
Resolves the given href and documentBase.
-
-
-
Method Detail
-
getResolver
public javax.xml.transform.URIResolver getResolver()
Returns the "wrapped" URIResolver- Returns:
- the wrapped URIResolver
-
resolve
public URILocation resolve(java.lang.String href, java.lang.String documentBase) throws URIException
Resolves the given href and documentBase. An implementation of this method should never return null. A URIException may be thrown instead.- Specified by:
resolve
in interfaceURIResolver
- Returns:
- the URILocation for the URI. [not null]
- Throws:
URIException
-
-