1 16 package com.google.gwt.xml.client.impl; 17 18 import com.google.gwt.core.client.JavaScriptObject; 19 import com.google.gwt.xml.client.CDATASection; 20 21 24 25 class CDATASectionImpl extends TextImpl implements CDATASection { 26 protected CDATASectionImpl(JavaScriptObject o) { 27 super(o); 28 } 29 30 36 public String toString() { 37 StringBuffer b = new StringBuffer ("<![CDATA["); 38 b.append(getData()); 39 b.append("]]>"); 40 return b.toString(); 41 } 42 } 43 | Popular Tags |