01: /*
02: * (C) Copyright 2002-2003, Andy Clark. All rights reserved.
03: *
04: * This file is distributed under an Apache style license. Please
05: * refer to the LICENSE file for specific details.
06: */
07:
08: package org.cyberneko.pull.event;
09:
10: import org.cyberneko.pull.XMLEvent;
11:
12: import org.apache.xerces.xni.XMLString;
13:
14: /**
15: * A comment event.
16: *
17: * @author Andy Clark
18: *
19: * @version $Id$
20: */
21: public class CommentEvent extends XMLEvent {
22:
23: //
24: // Data
25: //
26:
27: /** The text content. */
28: public XMLString text;
29:
30: //
31: // Constructors
32: //
33:
34: /** Default constructor. */
35: public CommentEvent() {
36: super (XMLEvent.COMMENT);
37: } // <init>()
38:
39: } // class CommentEvent
|