01: package com.jclark.xml.parse;
02:
03: /**
04: * Information about a comment
05: * @see com.jclark.xml.parse.base.Application#comment
06: * @version $Revision: 1.1 $ $Date: 1998/06/10 09:45:10 $
07: */
08: public interface CommentEvent extends LocatedEvent {
09: /**
10: * Returns the body of the comment occurring between
11: * the <code><--</code> and <code>--></code>.
12: */
13: String getComment();
14: }
|