/*
* reserved comment block
* DO NOT REMOVE OR ALTER!
*/
/*
* Copyright 2001, 2002,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* This class wraps a SAX entity resolver in an XNI entity resolver.
*
* @see EntityResolver
*
* @author Andy Clark, IBM
*
*/
public class EntityResolverWrapper
implements XMLEntityResolver {
//
// Data
//
/** The SAX entity resolver. */
//
// Constructors
//
/** Default constructor. */
public EntityResolverWrapper() {}
/** Wraps the specified SAX entity resolver. */
} // <init>(EntityResolver)
//
// Public methods
//
/** Sets the SAX entity resolver. */
} // setEntityResolver(EntityResolver)
/** Returns the SAX entity resolver. */
return fEntityResolver;
} // getEntityResolver():EntityResolver
//
// XMLEntityResolver methods
//
/**
* Resolves an external parsed entity. If the entity cannot be
* resolved, this method should return null.
*
* @param resourceIdentifier contains the physical co-ordinates of the resource to be resolved
*
* @throws XNIException Thrown on general error.
* @throws IOException Thrown if resolved entity stream cannot be
* opened or some other i/o error occurs.
*/
throws XNIException, IOException {
// When both pubId and sysId are null, the user's entity resolver
// can do nothing about it. We'd better not bother calling it.
// This happens when the resourceIdentifier is a GrammarDescription,
// which describes a schema grammar of some namespace, but without
// any schema location hint. -Sg
return null;
// resolve entity using SAX entity resolver
try {
if (inputSource != null) {
return xmlInputSource;
}
}
// error resolving entity
catch (SAXException e) {
ex = e;
}
throw new XNIException(ex);
}
}
// unable to resolve entity
return null;
} // resolveEntity(String,String,String):XMLInputSource
}