01: package javax.xml.stream.events;
02:
03: /**
04: * A marker interface for the end of the document
05: *
06: * @version 1.0
07: * @author Copyright (c) 2003 by BEA Systems. All Rights Reserved.
08: */
09: public interface EndDocument extends XMLEvent {
10: /**
11: * No methods are defined in this interface.
12: */
13: }
|