コード例 #1
0
ファイル: Comment.java プロジェクト: arcuri82/pg6100
 public void addComment(Comment comment) {
   if (!comment.isCommentSet()) {
     List<Comment> commentList = getComments();
     commentList.add(comment);
     comment.commentSet = true;
   }
 }