X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FPost.java;h=334a944aa7d74b1069bbc727820dcd2e09104a36;hb=0acd68634f3e73c62087609c1faa2dfc53da506d;hp=bb431d04759a34112e4559804d2e10f67290803c;hpb=58eeba9b521b0a0094ac90a37fd88811c6a27376;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Post.java b/src/main/java/net/pterodactylus/sone/data/Post.java index bb431d0..334a944 100644 --- a/src/main/java/net/pterodactylus/sone/data/Post.java +++ b/src/main/java/net/pterodactylus/sone/data/Post.java @@ -1,5 +1,5 @@ /* - * FreenetSone - StatusUpdate.java - Copyright © 2010 David Roden + * Sone - Post.java - Copyright © 2010–2012 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,7 +20,7 @@ package net.pterodactylus.sone.data; import java.util.Comparator; import java.util.UUID; -import net.pterodactylus.util.filter.Filter; +import net.pterodactylus.util.collection.filter.Filter; /** * A post is a short message that a user writes in his Sone to let other users @@ -65,6 +65,9 @@ public class Post { /** The text of the post. */ private volatile String text; + /** Whether the post is known. */ + private volatile boolean known; + /** * Creates a new post. * @@ -219,6 +222,27 @@ public class Post { return this; } + /** + * Returns whether this post is known. + * + * @return {@code true} if this post is known, {@code false} otherwise + */ + public boolean isKnown() { + return known; + } + + /** + * Sets whether this post is known. + * + * @param known + * {@code true} if this post is known, {@code false} otherwise + * @return This post + */ + public Post setKnown(boolean known) { + this.known = known; + return this; + } + // // OBJECT METHODS //