Returns a deep copy of this Text with no parent, that can be added to this document or a different one.
Text
158159160161162163164165166167168
public void testCopyisNotACDATASection() { Text c1 = new Text("test"); Node c2 = c1.copy(); assertEquals(Text.class, c2.getClass()); }