DefaultComment is the default Comment implementation. It is a doubly linked node which supports the parent relationship and can be modified in place.
DefaultComment
163164165166167168169
public CDATA createCDATA(String text) { return new DefaultCDATA(text); } public Comment createComment(String text) { return new DefaultComment(text); }
125126127128129130131
/* */ public CDATA createCDATA(String text) { /* 164 */ return new DefaultCDATA(text); /* */ } /* */ /* */ public Comment createComment(String text) { /* 168 */ return new DefaultComment(text); /* */ }