at.gv.egovernment.moa.util
Class EntityResolverChain

java.lang.Object
  |
  +--at.gv.egovernment.moa.util.EntityResolverChain
All Implemented Interfaces:
org.xml.sax.EntityResolver

public class EntityResolverChain
extends Object
implements org.xml.sax.EntityResolver

Implementation of the org.xml.sax.EntityResolver, for use by a org.apache.xerces.parsers.DOMParser.

Version:
$Id$
Author:
Patrick Peck

Constructor Summary
EntityResolverChain()
           
 
Method Summary
 void addEntityResolver(org.xml.sax.EntityResolver entityResolver)
          Add an EntityResolver to the chain.
 org.xml.sax.InputSource resolveEntity(String publicId, String systemId)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EntityResolverChain

public EntityResolverChain()
Method Detail

resolveEntity

public org.xml.sax.InputSource resolveEntity(String publicId,
                                             String systemId)
                                      throws org.xml.sax.SAXException,
                                             IOException
Specified by:
resolveEntity in interface org.xml.sax.EntityResolver
See Also:
EntityResolver.resolveEntity(java.lang.String, java.lang.String)

addEntityResolver

public void addEntityResolver(org.xml.sax.EntityResolver entityResolver)
Add an EntityResolver to the chain.
Parameters:
entityResolver - The EntityResolver to add.