public class CompilationUnitBuilder {
private CompilationUnit cu = new CompilationUnit();
public CompilationUnitBuilder buildComment(String commentStr) {
Comment comment = new JavadocComment(commentStr);
if (null != cu.getComments()) {
cu.getComments().add(comment);
} else {
cu.setComment(comment);
}