2 * @(#)DOMCDATASectionImpl.java 1.11 2000/08/16
6 package net.sourceforge.phpdt.tidy.w3c;
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>
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
24 public class DOMCDATASectionImpl extends DOMTextImpl
25 implements org.w3c.dom.CDATASection {
27 protected DOMCDATASectionImpl(Node adaptee)
33 /* --------------------- DOM ---------------------------- */
36 * @see org.w3c.dom.Node#getNodeName
38 public String getNodeName()
40 return "#cdata-section";
44 * @see org.w3c.dom.Node#getNodeType
46 public short getNodeType()
48 return org.w3c.dom.Node.CDATA_SECTION_NODE;