Re: [xml-dev] SAX Locator vs {start,end}Entity

From
Gregory Murphy <>
To
Date
2003-02-19T19:09:45Z
ID
<Pine.GSO.4.10.10302191105530.20228-100000@gris>
Thread
Re: [xml-dev] SAX Locator vs {start,end}Entity
On Wed, 19 Feb 2003, Richard Tobin wrote:

> Does SAX make any guarantee about which entity the locator will refer
> to during the startEntity and endEntity callbacks?

The SAX 2.0 API documentation is silent on this, but the method
descriptions in org.xml.sax.Locator have always led me to believe that the
location should be the entity in which the reference was encountered, and
that is how I have implemented it for my work. For example, in the 
description of Locator.getPublicId(): "The return value is the
public identifier of the document entity or of the external parsed entity
in which the markup triggering the event appears."

// Gregory Murphy <>