/* 207 */ String start = text.substring(0, offset);
/* 208 */ String rest = text.substring(offset);
/* 209 */ setText(start);
/* */
/* 211 */ Element parent = getParent();
/* 212 */ CDATA newText = createCDATA(rest);
/* */
/* 214 */ if (parent != null) {
/* 215 */ parent.add(newText);
/* */ }
/* */