-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tweet.java
50 lines (37 loc) · 914 Bytes
/
Tweet.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* Encapsulates the data of a Twitter 'Tweet'.
* @author sburton
*/
public class Tweet implements SocialMediaEntry {
private String user;
private String postText;
private int retweets;
public Tweet() {
user = "";
postText = "";
retweets = 0;
}
public Tweet(String user, String postText, int retweets) {
this.user = user;
this.postText = postText;
this.retweets = retweets;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getPostText() {
return postText;
}
public void setPostText(String postText) {
this.postText = postText;
}
public int getRetweets() {
return retweets;
}
public void setRetweets(int retweets) {
this.retweets = retweets;
}
}