コード例 #1
0
 public void appendData(char[] data, int start, int howmany) throws DOMException {
   if (cdata == null) cdata = new XMLString(data, start, howmany);
   else cdata.append(data, start, howmany);
 }
コード例 #2
0
 public void appendData(String arg) throws DOMException {
   if (cdata == null) cdata = new XMLString(arg.toCharArray());
   else cdata.append(arg);
 }