public class XMLEntityResolver extends Object implements IXMLEntityResolver
Constructor and Description |
---|
XMLEntityResolver()
Initializes the resolver.
|
Modifier and Type | Method and Description |
---|---|
void |
addExternalEntity(String name,
String publicID,
String systemID)
Adds an external entity.
|
void |
addInternalEntity(String name,
String value)
Adds an internal entity.
|
protected void |
finalize()
Cleans up the object when it's destroyed.
|
Reader |
getEntity(IXMLReader xmlReader,
String name)
Returns a Java reader containing the value of an entity.
|
boolean |
isExternalEntity(String name)
Returns true if an entity is external.
|
protected Reader |
openExternalEntity(IXMLReader xmlReader,
String publicID,
String systemID)
Opens an external entity.
|
protected void finalize() throws Throwable
public void addInternalEntity(String name, String value)
addInternalEntity
in interface IXMLEntityResolver
name
- the name of the entity.value
- the value of the entity.public void addExternalEntity(String name, String publicID, String systemID)
addExternalEntity
in interface IXMLEntityResolver
name
- the name of the entity.publicID
- the public ID of the entity, which may be null.systemID
- the system ID of the entity.public Reader getEntity(IXMLReader xmlReader, String name) throws XMLParseException
getEntity
in interface IXMLEntityResolver
xmlReader
- the current XML readername
- the name of the entity.XMLParseException
- If an exception occurred while resolving the entity.public boolean isExternalEntity(String name)
isExternalEntity
in interface IXMLEntityResolver
name
- the name of the entity.protected Reader openExternalEntity(IXMLReader xmlReader, String publicID, String systemID) throws XMLParseException
xmlReader
- the current XML readerpublicID
- the public ID, which may be nullsystemID
- the system IDXMLParseException