01: package com.jclark.xml.parse;
02:
03: /**
04: * Information about the end of the reference to an entity.
05: * @see com.jclark.xml.parse.base.Application#startEntityReference
06: * @version $Revision: 1.1 $ $Date: 1998/06/10 09:45:12 $
07: */
08: public interface StartEntityReferenceEvent {
09: /**
10: * Returns the name of the referenced entity.
11: */
12: String getName();
13: }
|