home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.dom;
-
- import org.w3c.dom.CDATASection;
- import org.w3c.dom.Node;
-
- public class CDATASectionImpl extends TextImpl implements CDATASection {
- static final long serialVersionUID = 2372071297878177780L;
-
- public CDATASectionImpl(DocumentImpl var1, String var2) {
- super(var1, var2);
- }
-
- public short getNodeType() {
- return 4;
- }
-
- public String getNodeName() {
- return "#cdata-section";
- }
-
- public Node cloneNode(boolean var1) {
- return super.ownerDocument.createCDATASection(((NodeImpl)this).getNodeValue());
- }
- }
-