cu.accept(converter);
for (Iterator it = cu.getCommentList().iterator(); it.hasNext();) {
Comment comment = (Comment) it.next();
if (comment.isDocComment())
continue;
comment.accept(converter);
}
return converter.getModel(true);
} catch (IOException e) {
throw RuntimeExceptionFactory.io(VF.string(e.getMessage()), null, null);