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: /**
13: * CDATA section event.
14: *
15: * @author Andy Clark
16: *
17: * @version $Id$
18: */
19: public class CDATAEvent extends BoundedEvent {
20:
21: //
22: // Constructors
23: //
24:
25: /** Default constructor. */
26: public CDATAEvent() {
27: super (XMLEvent.CDATA);
28: } // <init>(short)
29:
30: } // class CDATAEvent
|