コード例 #1
0
ファイル: Post.java プロジェクト: Ertine/tori
 public void setAttachments(final List<Attachment> attachments) {
   // fix bidirectional relationship
   for (final Attachment attachment : attachments) {
     attachment.setPost(this);
   }
   this.attachments = attachments;
 }