X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=510b81febe7a6f34b37c1c65f332961705c6b43d;hb=2e03e9dddbea4b81aacaf1aa316f5c3ccffd4bf9;hp=a686023fad004e90f45c8e0d52d21a1ba0585a37;hpb=6e9a43ccd93ae125720547c0fe421dc81a54ba90;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Reply.java b/src/main/java/net/pterodactylus/sone/data/Reply.java index a686023..510b81f 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -18,7 +18,9 @@ package net.pterodactylus.sone.data; import java.util.Comparator; +import java.util.Set; +import com.google.common.base.Optional; import com.google.common.base.Predicate; /** @@ -28,7 +30,7 @@ import com.google.common.base.Predicate; * The type of the reply * @author David ‘Bombe’ Roden */ -public interface Reply> { +public interface Reply> extends Identified { /** Comparator that sorts replies ascending by time. */ public static final Comparator> TIME_COMPARATOR = new Comparator>() { @@ -51,7 +53,7 @@ public interface Reply> { */ @Override public boolean apply(Reply reply) { - return reply.getTime() <= System.currentTimeMillis(); + return (reply == null) ? false : reply.getTime() <= System.currentTimeMillis(); } }; @@ -91,13 +93,25 @@ public interface Reply> { */ public boolean isKnown(); - /** - * Sets whether this reply is known. - * - * @param known - * {@code true} if this reply is known, {@code false} otherwise - * @return This reply - */ - public T setKnown(boolean known); + void like(Sone localSone); + void unlike(Sone localSone); + + boolean isLiked(Sone sone); + Set getLikes(); + + Modifier modify(); + + interface Modifier { + + Modifier setKnown(); + T update(Optional> replyUpdated); + + interface ReplyUpdated { + + void replyUpdated(T reply); + + } + + } }