X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=510b81febe7a6f34b37c1c65f332961705c6b43d;hb=563b924d21a02faa60409d21cc6ec1fd2740347c;hp=935c79bda456ba02e660a5165efcf97fa4fe1449;hpb=54e35873a9660bc51aae7cdb4c1e7d399e50986b;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 935c79b..510b81f 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -1,5 +1,5 @@ /* - * Sone - Reply.java - Copyright © 2011 David Roden + * Sone - Reply.java - Copyright © 2010–2013 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 @@ -18,20 +18,22 @@ package net.pterodactylus.sone.data; import java.util.Comparator; +import java.util.Set; -import net.pterodactylus.util.filter.Filter; +import com.google.common.base.Optional; +import com.google.common.base.Predicate; /** - * Abstract base class for all replies. + * Defines methods common for all replies. * * @param * The type of the reply * @author David ‘Bombe’ Roden */ -public abstract class Reply> { +public interface Reply> extends Identified { /** Comparator that sorts replies ascending by time. */ - public static final Comparator> TIME_COMPARATOR = new Comparator>() { + public static final Comparator> TIME_COMPARATOR = new Comparator>() { /** * {@inheritDoc} @@ -44,14 +46,14 @@ public abstract class Reply> { }; /** Filter for replies with timestamps from the future. */ - public static final Filter> FUTURE_REPLY_FILTER = new Filter>() { + public static final Predicate> FUTURE_REPLY_FILTER = new Predicate>() { /** * {@inheritDoc} */ @Override - public boolean filterObject(Reply reply) { - return reply.getTime() <= System.currentTimeMillis(); + public boolean apply(Reply reply) { + return (reply == null) ? false : reply.getTime() <= System.currentTimeMillis(); } }; @@ -61,27 +63,55 @@ public abstract class Reply> { * * @return The ID of the reply */ - public abstract String getId(); + public String getId(); /** * Returns the Sone that posted this reply. * * @return The Sone that posted this reply */ - public abstract Sone getSone(); + public Sone getSone(); /** * Returns the time of the reply. * * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC) */ - public abstract long getTime(); + public long getTime(); /** * Returns the text of the reply. * * @return The text of the reply */ - public abstract String getText(); + public String getText(); + + /** + * Returns whether this reply is known. + * + * @return {@code true} if this reply is known, {@code false} otherwise + */ + public boolean isKnown(); + + 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); + + } + + } }