*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / tidy / DOMCDATASectionImpl.java
1 /*
2  * @(#)DOMCDATASectionImpl.java   1.11 2000/08/16
3  *
4  */
5
6 package net.sourceforge.phpdt.tidy;
7
8
9 /**
10  *
11  * DOMCDATASectionImpl
12  *
13  * (c) 1998-2000 (W3C) MIT, INRIA, Keio University
14  * See Tidy.java for the copyright notice.
15  * Derived from <a href="http://www.w3.org/People/Raggett/tidy">
16  * HTML Tidy Release 4 Aug 2000</a>
17  *
18  * @author  Dave Raggett <dsr@w3.org>
19  * @author  Andy Quick <ac.quick@sympatico.ca> (translation to Java)
20  * @author  Gary L Peskin <garyp@firstech.com>
21  * @version 1.11, 2000/08/16 Tidy Release 4 Aug 2000
22  */
23
24 public class DOMCDATASectionImpl extends DOMTextImpl
25                             implements org.w3c.dom.CDATASection {
26
27     protected DOMCDATASectionImpl(Node adaptee)
28     {
29         super(adaptee);
30     }
31
32
33     /* --------------------- DOM ---------------------------- */
34
35     /**
36      * @see org.w3c.dom.Node#getNodeName
37      */
38     public String getNodeName()
39     {
40         return "#cdata-section";
41     }
42
43     /**
44      * @see org.w3c.dom.Node#getNodeType
45      */
46     public short getNodeType()
47     {
48         return org.w3c.dom.Node.CDATA_SECTION_NODE;
49     }
50 }