DefaultText is the default Text implementation. It is a doubly linked node which supports the parent relationship and can be modified in place.
DefaultText
172173174175176177178
if (text == null) { String msg = "Adding text to an XML document must not be null"; throw new IllegalArgumentException(msg); } return new DefaultText(text); }
134135136137138139140
/* 172 */ if (text == null) { /* 173 */ String msg = "Adding text to an XML document must not be null"; /* 174 */ throw new IllegalArgumentException(msg); /* */ } /* */ /* 177 */ return new DefaultText(text); /* */ }