01: package com.jclark.xml.parse;
02:
03: /**
04: * Information about the prolog.
05: * @see com.jclark.xml.parse.base.Application#endProlog
06: * @version $Revision: 1.6 $ $Date: 1998/05/14 02:45:44 $
07: */
08: public interface EndPrologEvent {
09: /**
10: * Returns the DTD.
11: * This will not be null even if there was no DOCTYPE declaration.
12: */
13: DTD getDTD();
14: }
|