01: package javax.xml.stream.events;
02:
03: /**
04: * An interface for comment events
05: *
06: * @version 1.0
07: * @author Copyright (c) 2003 by BEA Systems. All Rights Reserved.
08: */
09: public interface Comment extends XMLEvent {
10:
11: /**
12: * Return the string data of the comment, returns empty string if it
13: * does not exist
14: */
15: public String getText();
16: }
|