Use traditional getter method names.
[Sone.git] / src / main / java / net / pterodactylus / sone / data / Post.java
1 /*
2  * FreenetSone - StatusUpdate.java - Copyright © 2010 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;
19
20 /**
21  * A post is a short message that a user writes in his Sone to let other users
22  * know what is going on.
23  *
24  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
25  */
26 public class Post {
27
28         /** The time of the post (in milliseconds since Jan 1, 1970 UTC). */
29         private final long time;
30
31         /** The text of the post. */
32         private final String text;
33
34         /**
35          * Creates a new post.
36          *
37          * @param time
38          *            The time of the post (in milliseconds since Jan 1, 1970 UTC)
39          * @param text
40          *            The text of the post
41          */
42         public Post(long time, String text) {
43                 this.time = time;
44                 this.text = text;
45         }
46
47         /**
48          * Returns the time of the post.
49          *
50          * @return The time of the post (in milliseconds since Jan 1, 1970 UTC)
51          */
52         public long getTime() {
53                 return time;
54         }
55
56         /**
57          * Returns the text of the post.
58          *
59          * @return The text of the post
60          */
61         public String getText() {
62                 return text;
63         }
64
65 }