X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=60e5eeb8114a426820a5b44d928222b22f17cb8d;hb=afdb3c077f9f762f85be2656015609179eff8510;hp=c23426a859cd29f44a57bee92e8537c478f66662;hpb=99888ce13cc17d49f5e217ab6f2c9ad5ef168792;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 c23426a..60e5eeb 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -28,7 +28,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>() { @@ -71,15 +71,6 @@ public interface Reply> { public Sone getSone(); /** - * Sets the Sone that posted this reply. - * - * @param sone - * The Sone that posted this reply - * @return This reply - */ - public T setSone(Sone sone); - - /** * Returns the time of the reply. * * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC) @@ -87,15 +78,6 @@ public interface Reply> { public long getTime(); /** - * Sets the time of the reply. - * - * @param time - * The time of the reply (in milliseconds since Jan 1, 1970 UTC) - * @return This reply - */ - public T setTime(long time); - - /** * Returns the text of the reply. * * @return The text of the reply @@ -103,15 +85,6 @@ public interface Reply> { public String getText(); /** - * Sets the text of the reply. - * - * @param text - * The text of the reply - * @return This reply - */ - public T setText(String text); - - /** * Returns whether this reply is known. * * @return {@code true} if this reply is known, {@code false} otherwise