FileDocCategorySizeDatePackage
ExternalSubsetResolver.javaAPI DocJava SE 5 API2446Fri Aug 26 14:55:44 BST 2005com.sun.org.apache.xerces.internal.impl

ExternalSubsetResolver

public interface ExternalSubsetResolver implements XMLEntityResolver

This interface extends XMLEntityResolver providing a method to resolve external subsets for documents which do not explicitly provide one. The application can register an object that implements this interface with the parser configuration. If registered, it will be queried to locate an external subset when none is provided, even for documents that do not contain DOCTYPE declarations. If the registered external subset resolver does not provide an external subset for a given document, it should return null.

author
Michael Glavassevich, IBM
version
$Id: ExternalSubsetResolver.java,v 1.1.1.1 2004/05/04 10:21:42 vk112360 Exp $

Fields Summary
Constructors Summary
Methods Summary
public com.sun.org.apache.xerces.internal.xni.parser.XMLInputSourcegetExternalSubset(com.sun.org.apache.xerces.internal.xni.grammars.XMLDTDDescription grammarDescription)

Locates an external subset for documents which do not explicitly provide one. If no external subset is provided, this method should return null.

param
grammarDescription a description of the DTD
throws
XNIException Thrown on general error.
throws
IOException Thrown if resolved entity stream cannot be opened or some other i/o error occurs.