Exemplo n.º 1
0
 /**
  * Add new {@link Post} to the topic. The method sets Posts.topic field to this Topic.
  *
  * @param post post to add
  */
 public void addPost(Post post) {
   post.setTopic(this);
   updateModificationDate();
   this.posts.add(post);
 }