String s1 = "some text", s2 = "other writings", s3 = "more information";
ContentTextNode t1 = c.createTextNode(s1, root, null);
Text n1 = t1.getImplNodelet(), n1b;
n1b = n1.splitText(1);
n1b.setData(s1);
n1.removeFromParent();
try {
m.findTextWrapper(n1b, false);