Remove unnecessary type parameter.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / AbstractReplyBuilder.java
1 /*
2  * Sone - ReplyBuilder.java - Copyright © 2013 David Roden
3  *
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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.pterodactylus.sone.data.impl;
19
20 import net.pterodactylus.sone.data.ReplyBuilder;
21 import net.pterodactylus.sone.data.Sone;
22
23 /**
24  * Abstract implementation of a {@link ReplyBuilder}.
25  *
26  * @param <B>
27  *            The interface implemented and exposed by the builder
28  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
29  */
30 public class AbstractReplyBuilder<B extends ReplyBuilder<B>> implements ReplyBuilder<B> {
31
32         /** Whether to use a random ID for the reply. */
33         protected boolean randomId;
34
35         /** The ID of the reply. */
36         protected String id;
37
38         /** The sender of the reply. */
39         protected Sone sender;
40
41         /** Whether to use the current time when creating the reply. */
42         protected boolean currentTime;
43
44         /** The time of the reply. */
45         protected long time;
46
47         /** The text of the reply. */
48         protected String text;
49
50         /**
51          * {@inheritDoc}
52          */
53         @Override
54         @SuppressWarnings("unchecked")
55         public B randomId() {
56                 this.randomId = true;
57                 return (B) this;
58         }
59
60         /**
61          * {@inheritDoc}
62          */
63         @Override
64         @SuppressWarnings("unchecked")
65         public B withId(String id) {
66                 this.id = id;
67                 return (B) this;
68         }
69
70         /**
71          * {@inheritDoc}
72          */
73         @Override
74         @SuppressWarnings("unchecked")
75         public B from(Sone sender) {
76                 this.sender = sender;
77                 return (B) this;
78         }
79
80         /**
81          * {@inheritDoc}
82          */
83         @Override
84         @SuppressWarnings("unchecked")
85         public B currentTime() {
86                 this.currentTime = true;
87                 return (B) this;
88         }
89
90         /**
91          * {@inheritDoc}
92          */
93         @Override
94         @SuppressWarnings("unchecked")
95         public B withTime(long time) {
96                 this.time = time;
97                 return (B) this;
98         }
99
100         /**
101          * {@inheritDoc}
102          */
103         @Override
104         @SuppressWarnings("unchecked")
105         public B withText(String text) {
106                 this.text = text;
107                 return (B) this;
108         }
109
110 }