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; /*www . j a v a2 s . c o m*/ /** * */ public class User { private long id; private String name; private String screenName; private String profileImageUrl; private String profileLinkColor; public User() { } public long getId() { return id; } public String getName() { return name; } public String getScreenName() { return screenName; } public String getProfileImageUrl() { return profileImageUrl; } public String getProfileLinkColor() { return profileLinkColor; } }