Back to project page TwitterTrends.
The source code is released under:
Apache License
If you think the Android project TwitterTrends listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package camp.androidboot.twittertrends.model; /*from w w w .j a v a 2s . c o m*/ /** * */ public class Status { private long id; private String text; private String createdAt; private User user; public Status() { } public long getId() { return id; } public String getText() { return text; } public String getCreatedAt() { return createdAt; } public String getUserName() { return user.getName(); } public String getUserScreenName() { return user.getScreenName(); } public String getUserProfileImageUrl() { return user.getProfileImageUrl(); } public String getUserProfileLinkColor() { return user.getProfileLinkColor(); } }