1 5 6 package org.w3c.tidy; 7 8 import org.w3c.dom.DOMException ; 9 10 24 25 public class DOMCDATASectionImpl extends DOMTextImpl 26 implements org.w3c.dom.CDATASection { 27 28 protected DOMCDATASectionImpl(Node adaptee) 29 { 30 super(adaptee); 31 } 32 33 34 35 36 39 public String getNodeName() 40 { 41 return "#cdata-section"; 42 } 43 44 47 public short getNodeType() 48 { 49 return org.w3c.dom.Node.CDATA_SECTION_NODE; 50 } 51 } 52 | Popular Tags |