01: package com.jclark.xml.parse;
02:
03: /**
04: * Interface for events which provide location information.
05: * @version $Revision: 1.1 $ $Date: 1998/05/27 19:07:46 $
06: */
07: public interface LocatedEvent {
08: /**
09: * Returns the location
10: * of the first character of the markup of the event.
11: * The return value is valid only so long as the event
12: * itself is valid.
13: */
14: ParseLocation getLocation();
15: }
|