2 * Sone - AbstractReplyBuilder.java - Copyright © 2013–2015 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.database.ReplyBuilder;
23 * Abstract implementation of a {@link ReplyBuilder}.
26 * The interface implemented and exposed by the builder
27 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
29 public class AbstractReplyBuilder<B extends ReplyBuilder<B>> implements ReplyBuilder<B> {
31 /** Whether to use a random ID for the reply. */
32 protected boolean randomId;
34 /** The ID of the reply. */
37 /** The sender of the reply. */
38 protected String senderId;
40 /** Whether to use the current time when creating the reply. */
41 protected boolean currentTime;
43 /** The time of the reply. */
46 /** The text of the reply. */
47 protected String text;
53 @SuppressWarnings("unchecked")
63 @SuppressWarnings("unchecked")
64 public B withId(String id) {
73 @SuppressWarnings("unchecked")
74 public B from(String senderId) {
75 this.senderId = senderId;
83 @SuppressWarnings("unchecked")
84 public B currentTime() {
85 this.currentTime = true;
93 @SuppressWarnings("unchecked")
94 public B withTime(long time) {
103 @SuppressWarnings("unchecked")
104 public B withText(String text) {