Add posts to Sone.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 07:04:18 +0000 (09:04 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 14 Oct 2010 07:04:18 +0000 (09:04 +0200)
src/main/java/net/pterodactylus/sone/data/Sone.java

index b70dbdb..33b97a0 100644 (file)
 
 package net.pterodactylus.sone.data;
 
+import java.util.ArrayList;
 import java.util.Collections;
 import java.util.HashSet;
+import java.util.List;
 import java.util.Set;
 import java.util.UUID;
 
@@ -53,6 +55,9 @@ public class Sone {
        /** All friend Sones. */
        private final Set<Sone> friendSones = new HashSet<Sone>();
 
+       /** All posts. */
+       private final List<Post> posts = new ArrayList<Post>();
+
        /** Modification count. */
        private volatile long modificationCounter = 0;
 
@@ -203,6 +208,39 @@ public class Sone {
        }
 
        /**
+        * Returns the list of posts of this Sone.
+        *
+        * @return All posts of this Sone
+        */
+       public List<Post> getPosts() {
+               return Collections.unmodifiableList(posts);
+       }
+
+       /**
+        * Adds the given post to this Sone.
+        *
+        * @param post
+        *            The post to add
+        */
+       public synchronized void addPost(Post post) {
+               if (posts.add(post)) {
+                       modificationCounter++;
+               }
+       }
+
+       /**
+        * Removes the given post from this Sone.
+        *
+        * @param post
+        *            The post to remove
+        */
+       public synchronized void removePost(Post post) {
+               if (posts.remove(post)) {
+                       modificationCounter++;
+               }
+       }
+
+       /**
         * Returns the modification counter.
         *
         * @return The modification counter