X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FReply.java;h=4429abfbaeebcac8cd42ab6faaac50436d816058;hb=5baa28c3936cebfa7b5f33f78125d721c8d0e1fc;hp=44aaf899e977181280b61992011ebc890f7e591e;hpb=8bc55daff94063bc5cb6b1d240e408aac836f82b;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 44aaf89..4429abf 100644 --- a/src/main/java/net/pterodactylus/sone/data/Reply.java +++ b/src/main/java/net/pterodactylus/sone/data/Reply.java @@ -27,20 +27,30 @@ import java.util.UUID; */ public class Reply { - /** The Sone that posted this reply. */ - private final Sone sone; - /** The ID of the reply. */ private final UUID id; + /** The Sone that posted this reply. */ + private Sone sone; + /** The Post this reply refers to. */ - private final Post post; + private Post post; /** The time of the reply. */ - private final long time; + private long time; /** The text of the reply. */ - private final String text; + private String text; + + /** + * Creates a new reply. + * + * @param id + * The ID of the reply + */ + public Reply(String id) { + this(id, null, null, 0, null); + } /** * Creates a new reply. @@ -69,7 +79,7 @@ public class Reply { * The text of the reply */ public Reply(Sone sone, Post post, long time, String text) { - this(sone, UUID.randomUUID(), post, time, text); + this(UUID.randomUUID().toString(), sone, post, time, text); } /** @@ -86,9 +96,9 @@ public class Reply { * @param text * The text of the reply */ - public Reply(Sone sone, UUID id, Post post, long time, String text) { + public Reply(String id, Sone sone, Post post, long time, String text) { + this.id = UUID.fromString(id); this.sone = sone; - this.id = id; this.post = post; this.time = time; this.text = text; @@ -99,6 +109,15 @@ public class Reply { // /** + * Returns the ID of the reply. + * + * @return The ID of the reply + */ + public String getId() { + return id.toString(); + } + + /** * Returns the Sone that posted this reply. * * @return The Sone that posted this reply @@ -108,12 +127,15 @@ public class Reply { } /** - * Returns the ID of the reply. + * Sets the Sone that posted this reply. * - * @return The ID of the reply + * @param sone + * The Sone that posted this reply + * @return This reply (for method chaining) */ - public String getId() { - return id.toString(); + public Reply setSone(Sone sone) { + this.sone = sone; + return this; } /** @@ -126,6 +148,18 @@ public class Reply { } /** + * Sets the post this reply refers to. + * + * @param post + * The post this reply refers to + * @return This reply (for method chaining) + */ + public Reply setPost(Post post) { + this.post = post; + return this; + } + + /** * Returns the time of the reply. * * @return The time of the reply (in milliseconds since Jan 1, 1970 UTC) @@ -135,6 +169,18 @@ public class Reply { } /** + * Sets the time of this reply. + * + * @param time + * The time of this reply (in milliseconds since Jan 1, 1970 UTC) + * @return This reply (for method chaining) + */ + public Reply setTime(long time) { + this.time = time; + return this; + } + + /** * Returns the text of the reply. * * @return The text of the reply @@ -143,6 +189,18 @@ public class Reply { return text; } + /** + * Sets the text of this reply. + * + * @param text + * The text of this reply + * @return This reply (for method chaining) + */ + public Reply setText(String text) { + this.text = text; + return this; + } + // // OBJECT METHODS // @@ -152,7 +210,7 @@ public class Reply { */ @Override public int hashCode() { - return sone.hashCode() ^ id.hashCode() ^ post.hashCode() ^ (int) (time >> 32) ^ (int) (time & 0xffffffff); + return id.hashCode(); } /** @@ -164,7 +222,15 @@ public class Reply { return false; } Reply reply = (Reply) object; - return reply.sone.equals(sone) && reply.id.equals(id) && reply.post.equals(post) && (reply.time == time) && reply.text.equals(text); + return reply.id.equals(id); + } + + /** + * {@inheritDoc} + */ + @Override + public String toString() { + return getClass().getName() + "[id=" + id + ",sone=" + sone + ",post=" + post + ",time=" + time + ",text=" + text + "]"; } }