2 * Sone - ReplyImpl.java - Copyright © 2011–2013 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.data.impl;
20 import net.pterodactylus.sone.data.Reply;
21 import net.pterodactylus.sone.data.Sone;
22 import net.pterodactylus.sone.database.SoneProvider;
25 * Abstract base class for all replies.
28 * The type of the reply
29 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31 public abstract class ReplyImpl<T extends Reply<T>> implements Reply<T> {
33 /** The Sone provider. */
34 private final SoneProvider soneProvider;
36 /** The ID of the reply. */
37 private final String id;
39 /** The Sone that created this reply. */
40 private final String soneId;
42 /** The time of the reply. */
43 private final long time;
45 /** The text of the reply. */
46 private final String text;
48 /** Whether the reply is known. */
49 private volatile boolean known;
52 * Creates a new reply.
59 * The ID of the Sone of the reply
61 * The time of the reply
63 * The text of the reply
65 protected ReplyImpl(SoneProvider soneProvider, String id, String soneId, long time, String text) {
66 this.soneProvider = soneProvider;
77 public String getId() {
85 public Sone getSone() {
86 return soneProvider.getSone(soneId).get();
93 public long getTime() {
101 public String getText() {
109 public boolean isKnown() {
117 @SuppressWarnings("unchecked")
118 public T setKnown(boolean known) {
131 public int hashCode() {
132 return id.hashCode();
139 public boolean equals(Object object) {
140 if (!(object instanceof Reply<?>)) {
143 Reply<?> reply = (Reply<?>) object;
144 return reply.getId().equals(id);
151 public String toString() {
152 return String.format("%s[id=%s,sone=%s,time=%d,text=%s]", getClass().getName(), id, soneId, time, text);