Back to project page NewAndroidTwitter.
The source code is released under:
Apache License
If you think the Android project NewAndroidTwitter 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 net.londatiga.android.twitter; // w ww .j av a2s . c o m /** * Twitter user model. * * @author Lorensius W. L. T <lorenz@londatiga.net> * */ public class TwitterUser { public String userId; public String screenName; public String name; public String description; public String location; public String profileImageUrl; public String website; public int followerCount; }