use of spoon.support.reflect.code.CtCommentImpl in project spoon by INRIA.
the class DefaultCoreFactory method createComment.
public CtComment createComment() {
CtComment e = new CtCommentImpl();
e.setFactory(getMainFactory());
e.setCommentType(CtComment.CommentType.BLOCK);
e.setContent("");
return e;
}
Aggregations